/* ===== DRENTHE VAKANTIEWONING ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --green-dark:  #2D4A35;
  --green-mid:   #3D6647;
  --green-light: #5A8C6A;
  --green-pale:  #EAF2EC;
  --brown:       #7C5B3A;
  --brown-light: #C49A6C;
  --cream:       #F9F5EF;
  --white:       #FFFFFF;
  --text-dark:   #1E2D22;
  --text-mid:    #4A5C50;
  --text-light:  #7A8C80;
  --border:      #D4E0D8;
  --shadow:      0 4px 24px rgba(45,74,53,0.10);
  --shadow-lg:   0 12px 48px rgba(45,74,53,0.15);
  --radius:      12px;
  --radius-sm:   6px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Source Sans 3', sans-serif; color: var(--text-dark); background: var(--cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--green-dark); }
a    { color: var(--green-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-light); }
img  { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(249,245,239,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1200px; margin: 0 auto; gap: 12px;
  position: relative;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 40px; height: 40px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; flex-shrink: 0; }
.logo-text strong { display: block; font-size: 16px; color: var(--green-dark); line-height: 1.2; }
.logo-text span   { font-size: 11px; color: var(--text-light); font-family: 'Source Sans 3', sans-serif; }

/* Desktop nav – ONLY visible on large screens */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.desktop-nav a {
  padding: 7px 12px; border-radius: 24px; font-size: 13.5px;
  font-weight: 500; color: var(--text-mid); transition: all 0.2s; white-space: nowrap;
}
.desktop-nav a:hover { background: var(--green-pale); color: var(--green-dark); }

/* Booking / boek-direct buttons in nav */
.btn-book {
  background: var(--green-dark) !important; color: white !important;
  padding: 8px 18px !important; border-radius: 24px !important;
  font-weight: 600 !important; font-size: 13.5px !important;
  white-space: nowrap;
}
.btn-book:hover { background: var(--green-mid) !important; color: white !important; }
.btn-book-direct {
  background: var(--brown-light) !important; color: white !important;
  padding: 8px 18px !important; border-radius: 24px !important;
  font-weight: 600 !important; font-size: 13.5px !important;
  white-space: nowrap;
}
.btn-book-direct:hover { background: var(--brown) !important; color: white !important; }

/* Hamburger – hidden on desktop */
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; font-size: 20px; color: var(--text-dark);
  padding: 6px 10px; flex-shrink: 0; line-height: 1;
  transition: background 0.2s;
}
.nav-toggle:hover { background: var(--green-pale); }

/* Mobile nav drawer – ALWAYS hidden on desktop */
.mobile-nav {
  display: none;
  pointer-events: none;
}

/* ═══════════════════════════════════
   RESPONSIVE – TABLET/MOBILE (≤ 860px)
═══════════════════════════════════ */
@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .nav-toggle  { display: block; }

  /* Mobile nav: always rendered in DOM, slides in/out */
  .mobile-nav {
    display: flex !important;       /* override the desktop display:none */
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    z-index: 300;
    padding: 20px;
    overflow-y: auto;
    border-top: 2px solid var(--green-light);
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
    /* Slide hidden off-screen to the right by default */
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }
} /* end @media 860px – mobile nav */

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  margin-top: 68px;
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image – covers entire hero */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--green-dark);
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.03);
  transition: transform 10s ease;
  will-change: transform;
  display: block;
}
.hero:hover .hero-bg img { transform: scale(1.06); }

/* Dark overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    to right,
    rgba(15,30,18,0.82) 0%,
    rgba(15,30,18,0.55) 50%,
    rgba(15,30,18,0.15) 100%
  );
  z-index: 1;
}

/* Content sits above bg and overlay */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
}

.hero-text { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3); border-radius: 24px;
  padding: 5px 14px; margin-bottom: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.9);
}
.hero h1 { font-size: clamp(30px, 4.5vw, 56px); color: white; margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.75); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 28px; max-width: 540px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
  background: var(--brown-light); color: white;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: white; }
.btn-primary.green-btn { background: var(--green-mid); }
.btn-primary.green-btn:hover { background: var(--green-dark); }
.btn-outline {
  background: rgba(255,255,255,0.15); color: white;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(4px); text-decoration: none;
}
.btn-outline:hover { background: rgba(255,255,255,0.28); color: white; }

/* Stats card (desktop only) */
.hero-card {
  background: rgba(255,255,255,0.13); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 20px;
  padding: 28px; color: white;
}
.hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; line-height: 1; }
.stat-label  { font-size: 12px; opacity: 0.75; margin-top: 3px; }
.hero-quick-info { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 16px; }
.quick-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.quick-info-item { display: flex; align-items: center; gap: 7px; font-size: 13px; opacity: 0.88; }

/* ═══════════════════════════════════
   SECTIONS
═══════════════════════════════════ */
section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 10px; }
.section-header h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.section-header p  { font-size: 16px; color: var(--text-mid); max-width: 580px; margin: 0 auto; }

/* ABOUT */
.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-content h2 { font-size: 34px; margin-bottom: 16px; }
.about-content p  { color: var(--text-mid); margin-bottom: 14px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.highlight-item { background: var(--green-pale); border-radius: var(--radius-sm); padding: 14px; display: flex; align-items: center; gap: 10px; }
.highlight-icon { font-size: 22px; flex-shrink: 0; }
.highlight-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--green-dark); }
.highlight-text span   { font-size: 12px; color: var(--text-light); }
.about-image { position: relative; }
.about-image-main { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--green-pale); }
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.image-badge { position: absolute; bottom: -14px; right: -14px; background: var(--brown-light); color: white; padding: 14px 18px; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.image-badge strong { display: block; font-size: 26px; font-family: 'Playfair Display', serif; }
.image-badge span { font-size: 11px; }

/* FACILITEITEN */
.facilities { background: var(--cream); }
.facilities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.facility-card { background: white; border-radius: var(--radius); padding: 20px 16px; text-align: center; border: 1px solid var(--border); transition: all 0.3s; }
.facility-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-light); }
.facility-icon { font-size: 32px; margin-bottom: 10px; }
.facility-card h3 { font-size: 14px; font-family: 'Source Sans 3', sans-serif; font-weight: 600; margin-bottom: 5px; }
.facility-card p  { font-size: 12px; color: var(--text-light); }

/* GALERIJ */
.gallery { background: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); cursor: pointer; aspect-ratio: 4/3; background: var(--green-pale); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(20,40,25,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { background: rgba(20,40,25,0.35); }
.gallery-item-overlay span { color: white; font-size: 28px; opacity: 0; transform: scale(0.8); transition: all 0.3s; }
.gallery-item:hover .gallery-item-overlay span { opacity: 1; transform: scale(1); }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.93); align-items: center; justify-content: center; padding: 20px; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; display: block; }
.lightbox-close { position: absolute; top: -38px; right: 0; background: none; border: none; color: white; font-size: 28px; cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: white; font-size: 22px; cursor: pointer; padding: 14px 16px; border-radius: var(--radius-sm); backdrop-filter: blur(4px); transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter { position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.55); font-size: 13px; white-space: nowrap; }

/* BESCHIKBAARHEID */
.availability { background: var(--cream); }
.calendar-wrapper { max-width: 860px; margin: 0 auto; }
.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.cal-btn { background: var(--green-pale); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 18px; cursor: pointer; font-size: 14px; transition: all 0.2s; font-family: 'Source Sans 3', sans-serif; }
.cal-btn:hover { border-color: var(--green-light); }
.cal-months { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.cal-month-header { font-family: 'Playfair Display', serif; font-size: 18px; text-align: center; margin-bottom: 12px; color: var(--green-dark); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day-name { text-align: center; font-size: 10px; font-weight: 700; color: var(--text-light); padding: 3px 0; text-transform: uppercase; }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: 12px; font-weight: 500; }
.cal-day.available { background: #E8F5E9; color: #2E7D32; }
.cal-day.booked    { background: #FFEBEE; color: #C62828; text-decoration: line-through; }
.cal-day.blocked   { background: #FFF8E1; color: #F57F17; }
.cal-day.past      { background: transparent; color: #ccc; }
.cal-day.today     { border: 2px solid var(--green-dark); }
.cal-legend { display: flex; gap: 20px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; }
.legend-dot.available { background: #E8F5E9; border: 1px solid #2E7D32; }
.legend-dot.booked    { background: #FFEBEE; border: 1px solid #C62828; }
.legend-dot.blocked   { background: #FFF8E1; border: 1px solid #F57F17; }

/* REVIEWS */
.reviews-section { background: var(--cream); }
.reviews-intro { display: flex; align-items: center; justify-content: center; gap: 28px; margin-bottom: 40px; flex-wrap: wrap; }
.rating-big { text-align: center; }
.rating-number { font-family: 'Playfair Display', serif; font-size: 64px; line-height: 1; color: var(--green-dark); }
.rating-stars  { font-size: 22px; color: #F4A900; }
.rating-source { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card { background: white; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); position: relative; }
.review-card::before { content: '"'; position: absolute; top: 12px; left: 16px; font-size: 52px; line-height: 1; color: var(--green-pale); font-family: 'Playfair Display', serif; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-top: 12px; }
.reviewer-name { font-weight: 600; font-size: 15px; }
.review-rating { background: var(--green-pale); color: var(--green-dark); padding: 3px 9px; border-radius: 24px; font-size: 13px; font-weight: 600; }
.review-text { color: var(--text-mid); font-size: 14px; line-height: 1.6; }
.review-date { font-size: 11px; color: var(--text-light); margin-top: 10px; }

/* PARK */
.park { background: var(--green-dark); color: white; }
.park .section-header h2 { color: white; }
.park .section-header p  { color: rgba(255,255,255,0.65); }
.park-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.park-feature { background: rgba(255,255,255,0.09); border-radius: var(--radius); padding: 20px 16px; text-align: center; border: 1px solid rgba(255,255,255,0.12); transition: all 0.3s; }
.park-feature:hover { background: rgba(255,255,255,0.17); }
.park-feature-icon { font-size: 32px; margin-bottom: 10px; }
.park-feature h3 { font-size: 13.5px; color: white; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.park-feature p  { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* LOCATIE */
.location { background: white; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.location-map { background: var(--green-pale); border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.location-map iframe { width: 100%; height: 100%; border: none; }
.attraction-item { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.attraction-item:last-child { border-bottom: none; }
.attraction-distance { background: var(--green-pale); color: var(--green-dark); padding: 3px 9px; border-radius: 24px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.attraction-name { font-weight: 500; font-size: 14px; }

/* TARIEVEN / CTA */
.cta-section { background: var(--cream); }
.cta-card { background: white; border-radius: 20px; padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.price-item { background: var(--green-pale); border-radius: var(--radius); padding: 16px; text-align: center; }
.price-label  { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--green-dark); font-weight: 700; }
.price-period { font-size: 11px; color: var(--text-light); }
.cta-btn { background: var(--green-dark); color: white; padding: 14px 30px; border-radius: var(--radius); border: none; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 9px; font-family: 'Source Sans 3', sans-serif; text-decoration: none; }
.cta-btn:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,74,53,0.28); color: white; }
.booking-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 960px; margin: 0 auto; }

/* HUISREGELS */
.house-rules { background: white; }
.rules-content ul { list-style: none; max-width: 600px; margin: 0 auto; }
.rules-content ul li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.rules-content ul li:last-child { border-bottom: none; }
.rules-content ul li::before { content: '✓'; color: var(--green-light); font-weight: bold; flex-shrink: 0; }

/* FOOTER */
.site-footer { background: var(--text-dark); color: rgba(255,255,255,0.65); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-brand .logo-text strong { color: white; }
.footer-brand p  { font-size: 13px; margin-top: 12px; line-height: 1.7; }
.footer-nav h4   { color: white; font-size: 14px; margin-bottom: 14px; }
.footer-nav ul   { list-style: none; }
.footer-nav ul li { margin-bottom: 7px; }
.footer-nav ul li a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-nav ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 12px; }

/* ═══════════════════════════════════
   RESPONSIVE – TABLET (≤ 1024px)
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card    { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-column: span 1; grid-row: span 1; }
}

/* ═══════════════════════════════════
   RESPONSIVE – TABLET/MOBILE (≤ 860px)
   Hide desktop nav, show hamburger
═══════════════════════════════════ */
@media (max-width: 860px) {
  /* Hide desktop nav entirely */
  .desktop-nav { display: none; }
  /* Show hamburger button */
  .nav-toggle { display: block; }

  /* Mobile nav drawer – shown only when .open */
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    z-index: 300;
    padding: 20px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    /* Slide in/out animation */
    transform: translateX(100%);
    transition: transform 0.28s ease;
    pointer-events: none;
  }
  .mobile-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .mobile-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }
  .mobile-nav a { display: block; padding: 14px 16px; font-size: 16px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border); border-radius: var(--radius-sm); }
  .mobile-nav a:hover { background: var(--green-pale); color: var(--green-dark); }
  .mobile-nav .btn-book,
  .mobile-nav .btn-book-direct {
    display: block; margin-top: 12px; text-align: center;
    border-radius: var(--radius) !important; padding: 14px !important; font-size: 15px !important;
  }
}

@media (max-width: 860px) {
  .booking-split    { grid-template-columns: 1fr; }
  .about-grid       { grid-template-columns: 1fr; }
  .about-image      { display: none; }
  .location-grid    { grid-template-columns: 1fr; }
  .cal-months       { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .price-grid       { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   RESPONSIVE – MOBILE (≤ 640px)
═══════════════════════════════════ */
@media (max-width: 640px) {
  section { padding: 52px 0; }
  .hero { min-height: 75vh; }
  .hero-content { padding: 40px 20px; }
  .hero h1 { font-size: 28px; }
  .hero p  { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .hero-badge { font-size: 11px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .park-features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; }
  .section-header h2 { font-size: 26px; }
  .cta-card { padding: 22px 16px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev, .lightbox-next { padding: 10px 13px; }
  .cal-months { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: 65vh; }
}

/* ═══════════════════════════════════
   ABOUT SLIDESHOW
═══════════════════════════════════ */
.about-slideshow {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--green-pale);
}
.about-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.about-slide.active { opacity: 1; }
.about-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-slide-prev,
.about-slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.85); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.about-slide-prev { left: 10px; }
.about-slide-next { right: 10px; }
.about-slide-prev:hover, .about-slide-next:hover { background: white; }
.about-slide-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 10;
}
.about-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s;
}
.about-dot.active { background: white; }

/* ═══════════════════════════════════
   FACILITY CARDS WITH PHOTOS
═══════════════════════════════════ */
.facility-card-clickable {
  cursor: pointer;
  padding: 0 !important;
  overflow: hidden;
}
.facility-card-clickable:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--green-light); }
.facility-photo-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-pale);
}
.facility-photo-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
  display: block;
}
.facility-card-clickable:hover .facility-photo-thumb img { transform: scale(1.05); }
.facility-photo-count {
  position: absolute; bottom: 6px; right: 8px;
  background: rgba(0,0,0,0.55); color: white;
  font-size: 11px; padding: 2px 7px; border-radius: 20px;
}
.facility-card-clickable h3,
.facility-card-clickable p,
.facility-view-link {
  padding: 0 14px;
}
.facility-card-clickable h3 { padding-top: 12px; }
.facility-card-clickable p  { padding-bottom: 6px; }
.facility-view-link {
  font-size: 12px; color: var(--green-mid); font-weight: 600;
  padding-bottom: 12px; display: block;
}

/* ═══════════════════════════════════
   FACILITY MODAL
═══════════════════════════════════ */
.facility-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7);
  align-items: center; justify-content: center;
  padding: 20px;
}
.facility-modal-inner {
  background: white;
  border-radius: 16px;
  max-width: 680px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: 28px;
  position: relative;
  animation: popIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { opacity:0; transform:scale(0.9); }
  to   { opacity:1; transform:scale(1); }
}
.facility-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--cream); border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.facility-modal-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--green-dark);
  margin: 0 40px 6px 0;
}
.facility-modal-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px; margin-top: 8px;
}
.facility-modal-photos img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 10px;
  cursor: pointer; transition: transform 0.2s;
}
.facility-modal-photos img:hover { transform: scale(1.03); }
