@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Contemporary, contrast palette representing nature and health */
  --primary-color: #2E5C53;    /* Deep Forest Green */
  --secondary-color: #A3C9A8;  /* Soft Mint */
  --accent-color: #E27D5F;     /* Sunrise Orange */
  --dark-color: #2B2D42;       /* Charcoal */
  
  --bg-color: #F8F9FA;         /* Light Background */
  --text-color: #333333;       /* Standard Text */
  
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  
  --font-heading: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

body {
  font-family: var(--font-text);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-color);
}

/* Mobile Menu Transition */
#mobile-menu {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

#mobile-menu.active {
  max-height: 500px;
  opacity: 1;
}

/* Cookie Banner (JS Version) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(226, 125, 95, 0.4);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

.cookie-btn-alt:hover {
  box-shadow: 0 4px 10px rgba(75, 85, 99, 0.4);
}

/* Custom Numbered List for Reserve Cards */
.numbered-list {
  list-style: none;
  padding-left: 0;
  counter-reset: custom-counter;
}

.numbered-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.numbered-list li::before {
  content: counter(custom-counter);
  counter-increment: custom-counter;
  position: absolute;
  left: 0;
  top: -2px;
  background-color: var(--accent-color);
  color: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Form inputs styling focus */
input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 92, 83, 0.2);
}

/* Utilities */
.text-accent { color: var(--accent-color); }
.bg-primary { background-color: var(--primary-color); }
.bg-dark { background-color: var(--dark-color); }