:root {
  --color-primary: #333333;
  --color-primary-light: #555555;
  --color-primary-dark: #1a1a1a;
  --color-secondary: #777777;
  --color-secondary-light: #999999;
  --color-secondary-dark: #444444;
  --color-accent: #f0f0f0;
  --color-accent-dark: #e0e0e0;
  --color-background: #ffffff;
  --color-background-alt: #f7f7f7;
  --color-hover-green: #0f6737;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  color: var(--color-primary);
  background-color: #ffffff;
}

/* Global image handling to maintain aspect ratios */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bahnschrift', 'Segoe UI', 'Arial', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.5s;
  background-color: rgba(255, 255, 255, 0.4); /* Much more transparent */
  padding: 0.5rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.6); /* More transparent but still readable when scrolled */
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 0.25rem 0; /* Reduced padding when scrolled */
}

.container-custom {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  transition: all 0.5s;
}

header.scrolled .header-content {
  padding: 0.2rem 0;
}

.logo {
  font-size: 1.75rem;
  font-weight: bold;
  font-family: 'Bahnschrift', 'Segoe UI', 'Arial', sans-serif;
  color: var(--color-primary);
  display: flex;
  align-items: center;
}

.logo-image {
  height: 120px;
  width: auto;
  transition: all 0.5s;
}

header.scrolled .logo-image {
  height: 60px; /* Further reduced from 80px to 60px */
}

nav ul {
  display: none;
  list-style-type: none;
}

@media (min-width: 768px) {
  nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}

nav a {
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.5s;
  color: var(--color-primary-dark);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  height: 100%;
  position: relative;
}

header.scrolled nav a {
  font-size: 1rem; /* Smaller font size when scrolled */
}

nav a:hover {
  color: var(--color-hover-green);
  transform: translateY(-2px);
}

.mobile-menu-button {
  display: block;
  color: var(--color-primary);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.5s;
}

header.scrolled .mobile-menu-button {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  padding-top: 140px; /* Return to previous value */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(0,0,0,0.3);
}

.hero-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

.hero-content p {
  font-size: 1.25rem;
  color: white;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .button-container {
    flex-direction: row;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.5s;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: var(--color-hover-green);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

header.scrolled nav .btn-primary {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background-color: white;
  color: var(--color-hover-green);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 4rem 0;
}

section h2 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-primary-dark);
}

/* Footer */
footer {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 3rem 0;
  display: block;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 350px));
    justify-content: center;
    gap: 4rem;
  }
}

.footer-section {
  text-align: left;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  font-family: inherit;
}

/* Utilities */
.text-center {
  text-align: center;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #eaeaea;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-hover-green);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
  margin-top: 0.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Cabins Grid */
.cabins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cabins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cabin-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #eaeaea;
}

.cabin-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.cabin-image {
  width: 100%;
  height: auto;
  display: block;
}

.cabin-content {
  padding: 1.5rem;
}

.cabin-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cabin-content p {
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
}

.cabin-content .btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* CTA Section */
.cta-section {
  background-color: var(--color-background-alt);
  text-align: center;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  transform: translateY(-2px);
  color: var(--color-hover-green);
}

/* Page Banner - more specific selector to override any conflicts */
body .page-banner {
  position: relative;
  text-align: center;
  padding-top: 6rem !important;
  padding-bottom: 3rem !important;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
  background-color: var(--color-background-alt);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  margin-top: 150px;
}

/* Explicit padding declaration for all banners */
.page-banner {
  padding-top: 6rem !important;
  padding-bottom: 3rem !important;
}

/* Remove specific home-page override to simplify */
body:not(.home-page) .page-banner {
  margin-bottom: 2rem;
}

/* Remove container padding adjustment */
body:not(.home-page) .page-banner .container-custom {
  padding: 0 1rem;
}

/* Content sections spacing - match cabins.html exactly */
body:not(.home-page) section:not(.page-banner):not(.cta-section) {
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding: 0;
}

/* Ensure first child in containers doesn't add extra spacing */
body:not(.home-page) section:not(.page-banner):not(.cta-section) > .container-custom > :first-child {
  margin-top: 0;
}

/* Global content box consistency */
.about-section .about-content,
.contact-grid,
.booking-content,
.activity-card,
.faq-item,
section > .container-custom > .section-intro,
section > .container-custom > .booking-form-container,
section > .container-custom > .policies-grid,
section > .container-custom > .nearby-activities-grid,
section > .container-custom > .values-grid,
section > .container-custom > .team-grid,
section > .container-custom > .activities-grid,
section > .container-custom > .testimonials-slider,
section > .container-custom > div:not(.container-custom):not(.cabin-details):not(.heading-container):not(.features-grid):not(.cabins-grid):not(.button-container):not(.hero-content):not(.hero-overlay) {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-top: 4px solid #eaeaea;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Remove outdated buffer section */
/* body:not(.home-page) section:first-of-type:not(.page-banner) {
  margin-top: 2rem;
} */

.page-banner::before {
  display: none; /* Remove the texture completely */
}

/* Remove transition element */
.page-banner::after {
  display: none;
}

.page-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 3;
  text-shadow: none; /* Remove text shadow */
  color: var(--color-primary-dark); /* Ensure heading is dark gray */
}

.page-banner p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-shadow: none; /* Remove text shadow */
  color: var(--color-primary); /* Slightly lighter gray for paragraph */
}

/* Cabin Details */
.cabin-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 0 2rem 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-top: 4px solid #eaeaea;
}

@media (min-width: 768px) {
  .cabin-details {
    grid-template-columns: 1fr 1fr;
  }
  
  .cabin-details.reverse {
    direction: rtl;
  }
  
  .cabin-details.reverse > * {
    direction: ltr;
  }
}

.cabin-images {
  overflow: hidden;
}

.main-cabin-image {
  width: 100%;
  max-height: 300px;
  margin: 0 auto;
  background-color: var(--color-background-alt);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.cabin-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-image {
  width: 100%;
  max-height: 100px;
  margin: 0 auto;
  background-color: var(--color-background-alt);
  border-radius: 0.25rem;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.05);
  border-color: var(--color-hover-green);
}

.cabin-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.cabin-price {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cabin-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature i {
  color: var(--color-primary);
}

.cabin-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cabin-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenities-list i {
  color: var(--color-primary);
}

/* Activities Page Styles */
.activities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 0 0 2rem 0;
}

@media (min-width: 1024px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.activity-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.activity-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-hover-green);
}

.activity-image {
  width: 100%;
  max-height: 250px;
  margin: 0 auto;
  background-color: var(--color-background-alt);
}

.activity-content {
  padding: 2rem;
}

.activity-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: left;
}

.activity-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.activity-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .activity-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

.activity-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.activity-detail i {
  color: var(--color-primary);
}

/* Nearby Activities */
.nearby-activities {
  background-color: var(--color-background-alt);
  padding: 4rem 0;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.nearby-activities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .nearby-activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nearby-activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nearby-activity {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #eaeaea;
}

.nearby-activity:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-hover-green);
}

.nearby-activity i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.nearby-activity h3 {
  margin-bottom: 0.75rem;
}

.nearby-activity p {
  font-size: 0.95rem;
}

/* About Page Styles */
.about-section {
  padding: 4rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 2fr;
  }
}

.about-image {
  text-align: center;
}

.rounded-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Values Section */
.about-values {
  padding: 4rem 0;
  background-color: var(--color-background-alt);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 0 2rem 0;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #eaeaea;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--color-hover-green);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 0 2rem 0;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member {
  text-align: center;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background-color: var(--color-background-alt);
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background-color: var(--color-accent);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .testimonials-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars {
  color: var(--color-secondary);
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
  position: relative;
  background-color: var(--color-background);
  z-index: 5;
  margin-top: -1px; /* Create overlap without showing edge */
  border-top-left-radius: 0; /* Remove the curved top */
  border-top-right-radius: 0; /* Remove the curved top */
  box-shadow: none; /* Remove any shadow */
}

.contact-section::before {
  display: none; /* Remove the curved edge element */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2, 
.contact-form-container h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--color-primary);
  padding-top: 0.25rem;
}

.contact-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.meta-text {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-top: 0.25rem;
}

.social-contact h3 {
  margin-bottom: 1rem;
}

.social-icons-large {
  display: flex;
  gap: 1.5rem;
}

.social-icons-large a {
  font-size: 2rem;
  color: var(--color-primary);
  transition: color 0.3s;
}

.social-icons-large a:hover {
  transform: translateY(-2px);
  color: var(--color-hover-green);
}

/* Contact Form */
.contact-form-container {
  background-color: var(--color-background-alt);
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  font-family: inherit;
}

textarea.form-control {
  resize: vertical;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  position: relative;
  background-color: var(--color-background-alt);
  z-index: 4;
  margin-top: 0; /* Remove the negative margin */
  border-top-left-radius: 0; /* Remove the curved top */
  border-top-right-radius: 0; /* Remove the curved top */
}

.map-container {
  margin-top: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.map-placeholder {
  height: 400px;
  background-color: var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  position: relative;
  background-color: var(--color-background);
  z-index: 3;
  margin-top: 0; /* Remove the negative margin */
  border-top-left-radius: 0; /* Remove the curved top */
  border-top-right-radius: 0; /* Remove the curved top */
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
  font-size: 1.25rem;
}

.faq-item p {
  line-height: 1.6;
}

/* Booking Page Styles */
.booking-section {
  padding: 4rem 0;
}

.booking-content {
  max-width: 900px;
  margin: 0 auto;
}

/* Booking Steps */
.booking-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  position: relative;
  align-items: center;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-background-alt);
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: var(--color-primary);
}

.booking-step.active .step-number {
  background-color: var(--color-primary);
  color: white;
}

.step-text {
  font-size: 0.9rem;
  text-align: center;
}

.step-connector {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-primary);
  position: relative;
  z-index: 1;
  margin: 0 10px;
  max-width: 50px;
}

/* Booking Form Container */
.booking-form-container {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
}

.booking-instructions {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.form-actions button {
  min-width: 120px;
}

/* Booking Form Steps */
.booking-form-step {
  display: none;
}

.booking-form-step.active {
  display: block;
}

/* Cabin Selection */
.cabin-selection {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.cabin-option {
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cabin-option {
    flex-direction: row;
  }
}

.cabin-option-image {
  width: 100%;
  max-height: 200px;
  margin: 0 auto;
  background-color: var(--color-background-alt);
}

@media (min-width: 768px) {
  .cabin-option-image {
    width: 250px;
    max-height: 100%;
    margin: 0;
  }
}

.cabin-option-details {
  padding: 1.5rem;
  flex-grow: 1;
}

.cabin-option-details h3 {
  margin-bottom: 0.25rem;
}

.cabin-price {
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.cabin-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cabin-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.cabin-features-list i {
  color: var(--color-primary);
}

.cabin-selection-actions {
  display: flex;
  gap: 1rem;
}

/* Booking Summary */
.booking-summary {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.summary-section {
  margin-bottom: 2rem;
}

.summary-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.summary-row.total {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
}

.booking-notice {
  background-color: var(--color-accent);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: var(--color-secondary);
  text-align: center;
}

/* Booking Confirmation */
.booking-confirmation {
  text-align: center;
  padding: 3rem 0;
}

.confirmation-icon {
  font-size: 5rem;
  color: #0F6737;
  margin-bottom: 2rem;
}

.booking-confirmation h2 {
  margin-bottom: 1.5rem;
}

.booking-confirmation p {
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation-actions {
  margin-top: 2rem;
}

/* Booking Policies */
.booking-policies {
  padding: 4rem 0;
  background-color: var(--color-background-alt);
}

.policies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 0 2rem 0;
}

@media (min-width: 640px) {
  .policies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .policies-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.policy-item {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.policy-item i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.policy-item h3 {
  margin-bottom: 1rem;
}

.policy-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Global content box styling for consistency across pages */
.about-section .about-content,
.contact-grid,
.booking-content,
.activity-card,
.faq-item,
section > .container-custom > .section-intro,
section > .container-custom > .booking-form-container,
section > .container-custom > .policies-grid,
section > .container-custom > .nearby-activities-grid,
section > .container-custom > .values-grid,
section > .container-custom > .team-grid,
section > .container-custom > .activities-grid,
section > .container-custom > .testimonials-slider,
section > .container-custom > div:not(.container-custom):not(.cabin-details):not(.heading-container):not(.features-grid):not(.cabins-grid):not(.button-container):not(.hero-content):not(.hero-overlay) {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-top: 4px solid #eaeaea;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Adjust activity card styling to match cabin details */
.activity-card {
  padding: 0;
}

.activity-content {
  padding: 2rem;
}

/* Ensure all page sections have proper spacing */
body:not(.home-page) section:not(.page-banner):not(.cta-section) > .container-custom > :first-child {
  margin-top: 0;
}

/* Ensure existing cabin styling doesn't conflict */
.cabin-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 0 2rem 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-top: 4px solid #eaeaea;
}

@media (min-width: 768px) {
  .cabin-details {
    grid-template-columns: 1fr 1fr;
  }
  
  .cabin-details.reverse {
    direction: rtl;
  }
  
  .cabin-details.reverse > * {
    direction: ltr;
  }
}

.cabin-images {
  overflow: hidden;
}

.main-cabin-image {
  width: 100%;
  max-height: 300px;
  margin: 0 auto;
  background-color: var(--color-background-alt);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.cabin-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-image {
  width: 100%;
  max-height: 100px;
  margin: 0 auto;
  background-color: var(--color-background-alt);
  border-radius: 0.25rem;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.05);
  border-color: var(--color-hover-green);
}

.cabin-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.cabin-price {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.cabin-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature i {
  color: var(--color-primary);
}

.cabin-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cabin-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.amenities-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.amenities-list i {
  color: var(--color-primary);
}

/* Make all main sections have white backgrounds except special sections */
section:not(.page-banner):not(.cta-section):not(.footer) {
  background-color: #ffffff;
}

/* Keep existing backgrounds for boxes inside sections */
.cabin-details,
.feature-card,
.activity-card,
.faq-item,
.value-card,
.team-member,
.policy-item,
.about-section .about-content,
.contact-grid,
.booking-content,
section > .container-custom > .section-intro,
section > .container-custom > .booking-form-container,
section > .container-custom > .policies-grid,
section > .container-custom > .nearby-activities-grid,
section > .container-custom > .values-grid,
section > .container-custom > .team-grid,
section > .container-custom > .activities-grid,
section > .container-custom > .testimonials-slider {
  background-color: #f9f9f9;
}

/* Preserve the CTA section background */
.cta-section {
  background-color: var(--color-background-alt);
}

/* Preserve footer background if it exists */
footer, .footer {
  /* This ensures the ruleset is not empty */
  display: block;
}

/* Global spacing for all sections */
section:not(.cta-section):not(.footer) {
  margin-bottom: 2rem;
  padding: 0;
}

/* Use the original page-banner definition at line ~442 
   but update just the margin-bottom for spacing consistency */

/* Content box spacing */
.about-section .about-content,
.contact-grid,
.booking-content,
.activity-card,
.faq-item,
section > .container-custom > .section-intro,
section > .container-custom > .booking-form-container,
section > .container-custom > .policies-grid,
section > .container-custom > .nearby-activities-grid,
section > .container-custom > .values-grid,
section > .container-custom > .team-grid,
section > .container-custom > .activities-grid,
section > .container-custom > .testimonials-slider,
section > .container-custom > div:not(.container-custom):not(.cabin-details):not(.heading-container):not(.features-grid):not(.cabins-grid):not(.button-container):not(.hero-content):not(.hero-overlay) {
  margin-bottom: 2rem;
}

/* Section headings spacing */
section h2 {
  margin-bottom: 2rem;
}

/* Remove any conflicting spacing */
body:not(.home-page) section:not(.page-banner):not(.cta-section) {
  margin-top: 0;
  padding: 0;
}

/* Keep CTA section spacing separate */
.cta-section {
  margin-top: 2rem;
  padding: 4rem 0;
}

/* Change add-ons to Enhancements for friendlier verbiage */
.enhancements-selection {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.enhancement-item {
  display: flex;
  align-items: flex-start;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  border: 2px solid transparent;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.enhancement-item:hover {
  border-color: #0F6737;
  box-shadow: 0 4px 12px rgba(15, 103, 55, 0.12);
  transform: translateY(-2px);
}

.enhancement-checkbox {
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enhancement-checkbox-input {
  display: none;
}

.enhancement-checkbox-label {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #777;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.enhancement-checkbox-input:checked + .enhancement-checkbox-label::after {
  content: '\2713';
  display: block;
  color: white;
  background-color: #0F6737;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  line-height: 22px;
  border-radius: 2px;
}

.enhancement-details {
  flex: 1;
}

.enhancement-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #333;
}

.enhancement-price {
  font-weight: bold;
  color: #777;
  margin: 0 0 0.75rem;
}

.enhancement-description {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.empty-enhancements-message {
  color: #888;
  font-style: italic;
  padding: 0.5rem 0;
}

/* Make sure the newsletter subscribe button matches other primary buttons */
.newsletter-form .btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.5s;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.newsletter-form .btn-primary:hover {
  background-color: var(--color-hover-green);
  color: white;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* Style for navigation Book Now button */
nav .btn-primary {
  transition: all 0.5s;
  color: white;
}

nav .btn-primary:hover {
  background-color: var(--color-hover-green);
  color: white; /* Ensure text color doesn't change on hover */
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transform: translateY(-2px);
} 