/*
Theme Name: Shady Brook Campground
Theme URI: https://shadybrookcg.com
Author: Campground Marketing Agency
Author URI: https://shadybrookcg.com
Description: Custom WordPress theme for Shady Brook Campground, Beavertown PA. Built with ACF Free for full content management.
Version: 1.4.6
License: Private
Text Domain: shadybrook
*/

/* ============================================================
   SHADY BROOK CAMPGROUND — CUSTOM THEME
   Design: Nature-forward, heavy imagery, bite-sized text
   Colors: Brown primary, Forest Green, Sky Blue, Purple accent, Amber CTA
   Font: Gotham Rounded (all weights)
   ============================================================ */

/* ---- FONT FACE ---- */
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDEDBOLD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDED-BOLDITALIC.OTF') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDEDMEDIUM.TTF') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDED-MEDIUMITALIC.OTF') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDEDBOOK.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDED-BOOKITALIC.OTF') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDEDLIGHT.TTF') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GothamRounded';
  src: url('assets/fonts/GOTHAMROUNDED-LIGHTITALIC.OTF') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* ---- CSS VARIABLES ---- */
:root {
  --brown:        #7D4A4E;
  --brown-dark:   #5E3438;
  --brown-mid:    #9A6468;
  --green:        #1E2E1E;
  --green-light:  #2A3D2A;
  --sky:          #8FAFD4;
  --purple:       #6B4FA0;
  --purple-light: #8a6bbf;
  --cream:        #f5ede0;
  --cream-dark:   #ede0cc;
  --amber:        #f0a020;
  --amber-dark:   #d48a10;
  --text:         #1E2E1E;
  --text-light:   #5E3438;
  --font:         'GothamRounded', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY CLASSES ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  display: inline;
  align-items: center;
  gap: 0.25em;
  width: fit-content;
  max-width: 100%;
}
.section-title::before, .section-title::after {
    content: '';
    display: inline-block;
    width: 2em;
    height: 1em;
    background: url(/wp-content/uploads/2026/03/tent-icon-new.png) center / contain no-repeat;
    opacity: 1;
    position: relative;
    top: 6px;
}
.section-title::before {
    margin-right: 10px;
}
.section-title::after{
    margin-left: 10px;
}
.section-title::after {
  transform: scaleX(-1);
}

.section-title--light { color: #fff; }
.section-title--dark  { color: var(--text); }

.section-body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background-color: var(--amber);
  color: var(--text);
}
.btn-primary:hover { background-color: var(--amber-dark); color: var(--text); }

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background-color: rgba(255,255,255,0.12); color: #fff; }

.btn-green {
  background-color: var(--green);
  color: #fff;
}
.btn-green:hover { background-color: var(--green-light); color: #fff; }

/* ---- WOOD GRAIN TEXTURE OVERLAY ---- */
.wood-texture {
  position: relative;
}
.wood-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}
.wood-texture > * { position: relative; z-index: 2; }

/* ---- FADE UP ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(30,46,30,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}
.nav-links--right li.social-icons {
    display: flex;
    gap: 10px;
}
.nav-links--right li.social-icons a, .nav-links--right li.social-icons a span {
    display: flex;
}
.nav-links--right li.social-icons a span path, .nav-links--right li.social-icons a span line, .nav-links--right li.social-icons a span rect {
transition: color 0.2s ease;
}
.nav-links--right li.social-icons a:hover span path, .nav-links--right li.social-icons a:hover span line, .nav-links--right li.social-icons a:hover span rect {
    stroke: #f0a020;
}
.nav-links--left { justify-content: flex-end; }
.nav-links--right { justify-content: flex-start; }

.nav-links a {
  font-family: var(--font);
  font-weight: 700;
  font-size:.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  white-space: nowrap;
}


.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

.nav-logo {
  flex-shrink: 0;
  padding: 0 1.5rem;
}

.nav-logo img {
    height: 105px;
    width: auto;
    transform: translateY(33%);
}
.home .nav-logo img {
  height: 80px;
  width: auto;
    transform: unset;
}
.nav-book {
  background-color: var(--amber);
  color: var(--text) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background-color 0.2s ease !important;
  white-space: nowrap;
}
.nav-book:hover { background-color: var(--amber-dark) !important; color: var(--text) !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: rgba(30,46,30,0.96);
  padding: 1.5rem;
  gap: 1rem;
}
.nav-mobile a {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--amber); }
.nav-mobile.open { display: flex; overflow: scroll; height: calc(100vh  - 70px); min-height: calc(100vh  - 70px); }
@media (max-width: 1300px) {
.nav-links { gap: 1.5rem; }
.nav-links a, .nav-dropdown__menu a { font-size: .9rem; }
}
@media (max-width: 1199px) {
.nav-links { gap: 1rem; }
.nav-links a, .nav-dropdown__menu a { font-size: .8rem; }
    .nav-logo { padding: 0 1rem; }
    .nav-links--right .nav-book { padding: 0.6rem .8rem; }
.nav-links--right li.social-icons { gap: 8px; }
.nav-logo img { height: 80px; }

    
}
@media (max-width: 1024px) {
.nav-links a, .nav-dropdown__menu a { font-size: .75rem; letter-spacing: 0.1em; }
.nav-links { gap: 1rem; }
.nav-logo { padding: 0 1rem; }


}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { padding: 0; }
  .nav-logo img { transform: unset; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
padding: 0 1.5rem 3.5rem;
  overflow: hidden;
  margin-top: 0;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(94,52,56,0.35) 0%, rgba(94,52,56,0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero__subtitle {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.page-hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,46,30,0.5) 0%, rgba(30,46,30,0.3) 40%, rgba(30,46,30,0.72) 100%);
}

.home-hero__tree-left,
.home-hero__tree-right {
  position: absolute;
  bottom: 0;
  width: 220px;
  opacity: 0.55;
  pointer-events: none;
}
.home-hero__tree-left  { left: 0; }
.home-hero__tree-right { right: 0; transform: scaleX(-1); }

.home-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.home-hero__logo {
  width: 340px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}

.home-hero__location {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}

.home-hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 2rem;
  text-shadow: 0 2px 24px rgba(30,46,30,0.5);
}

.home-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.home-hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background-color: var(--cream);
  padding: 6rem 1.5rem;
    padding-bottom: 8rem;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(42,26,14,0.2);
}
.about-image-wrap > img {
  border-radius: 12px;
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: linear-gradient(145deg, #8A6BBF 0%, var(--purple) 60%, #4A3578 100%);
  color: #fff;
  border-radius: 0;
  padding: 1.1rem 1.5rem 1rem;
  /* 3D layered shadow: near shadow + far ambient + bottom edge depth */
  box-shadow:
    0 2px 0 rgba(255,255,255,0.18) inset,
    0 -3px 0 rgba(0,0,0,0.25) inset,
    0 6px 0 #3A2560,
    0 10px 20px rgba(60,30,100,0.45),
    0 20px 40px rgba(60,30,100,0.25);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.15;
  text-align: center;
  z-index: 10;
  transform: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-badge:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.18) inset,
    0 -3px 0 rgba(0,0,0,0.25) inset,
    0 6px 0 #3A2560,
    0 14px 28px rgba(60,30,100,0.5),
    0 28px 50px rgba(60,30,100,0.3);
}
.about-badge span {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 0.1rem;
}

@media (max-width: 1024px) {
.about-section { padding-bottom: 6rem; }
}
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap img { height: 320px; }
}

/* ============================================================
   SITES SECTION (home teaser)
   ============================================================ */
.sites-section {
  background-color: var(--brown-dark);
  padding: 0 1.5rem 6rem;
  position: relative;
  overflow: visible;
}

/* Ribbon banner at top of sites section */
.sites-ribbon-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: 0;
    margin-bottom: 0;
    pointer-events: none;
    overflow: visible;
    top: -50px;
}
.sites-ribbon-img {
  width: 300px;
  max-width: 65vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}

.sites-grid {
  max-width: 1280px;
  margin: 0 auto;
}

.sites-header {
  text-align: center;
  margin-bottom: 3rem;
}

.sites-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.site-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}

.site-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.site-card:hover .site-card__bg { transform: scale(1.05); }

.site-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,46,30,0.92) 0%, rgba(30,46,30,0.25) 60%, transparent 100%);
}

.site-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.site-card__tag {
  display: inline-block;
  background-color: var(--purple);
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  margin-bottom: 0.75rem;
}

.site-card__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.site-card__desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .sites-cards { grid-template-columns: 1fr; }
  .site-card { height: 320px; }
}

/* ============================================================
   AMENITIES SECTION
   ============================================================ */
.amenities-section {
  background-color: var(--cream);
  padding: 6rem 1.5rem;
}

.amenities-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.amenities-header {
  text-align: center;
  margin-bottom: 3rem;
}

.amenities-header .section-body {
  margin: 1rem auto 0;
  text-align: center;
}

/* ---- AMENITIES CARD SLIDER ---- */
.amenities-slider-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.amenities-slider {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: amenityCardScroll 40s linear infinite;
}
.amenities-slider:hover {
  animation-play-state: paused;
}
.page-hero__content p.banner-disc-blk {
    font-family: var(--font);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 1rem auto 0;
    text-align: center;
    color: #fff;
}
@keyframes amenityCardScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.amenity-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 200px;
  width: 220px;
  flex-shrink: 0;
}
.amenity-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.amenities-slider:hover .amenity-card__bg { transform: scale(1.07); }
.amenity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,46,30,0.88) 0%, rgba(30,46,30,0.1) 70%);
}
.amenity-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* ============================================================
   ACTIVITIES SECTION
   ============================================================ */
.activities-section {
  position: relative;
  padding: 6rem 1.5rem;
  background-color: var(--brown-dark);
  overflow: hidden;
}

.activities-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.activities-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.activities-inner p, .activities-inner .activities-tags {
    max-width: 800px;
}
.activities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1.5rem 0 2rem;
}

.activity-tag {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.45rem 1.1rem;
  border-radius: 0;
}

/* ============================================================
   GALLERY PREVIEW (home)
   ============================================================ */
.gallery-preview-section {
  background-color: var(--cream);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
section.gallery-preview-section:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(https://brydan2.website/wp-content/uploads/2026/03/Shady-Brook-Campground-Wood-Background-2.webp);
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.gallery-preview-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-preview-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-preview-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-preview-item:hover img { transform: scale(1.07); }

.gallery-preview-cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (max-width: 640px) {
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 6rem 1.5rem;
  background-color: var(--cta-overlay, var(--green));
  overflow: hidden;
  text-align: center;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.cta-banner__tree-left,
.cta-banner__tree-right {
  position: absolute;
  bottom: 0;
  width: 180px;
  opacity: 0.3;
  pointer-events: none;
}
.cta-banner__tree-left  { left: 0; }
.cta-banner__tree-right { right: 0; transform: scaleX(-1); }

.cta-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-lft-img-col {
    border-radius: 8px;
    overflow: hidden;
    display: block;
}
.cta-banner__inner .cta-grid {
    display: flex;
    flex-wrap: wrap;
        align-items: center;
    gap: 40px;
}
.cta-grid > div {
    width: calc(50% - 20px);
}
.cta-ryt-content {
    text-align: left;
}
.cta-ryt-content h2.section-title {
    font-size: clamp(1.6rem, 3.3vw, 2.8rem);

}
.cta-ryt-content h2 + p {
    margin-top: 15px;
}

@media (max-width: 768px) {
.cta-banner {
    padding: 4rem 1.5rem;

}
.cta-banner__inner .cta-grid {
    gap: 30px;
}
.cta-grid > div {
    width: 100%;
}
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background-color: var(--brown-dark);
  padding: 2rem 1.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}

.footer-brand img {
  height: auto;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.footer-col ul li {
  margin-bottom: 0.3rem;
}

.footer-col ul li a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: #fff; }

.footer-col p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.footer-col a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1280px;
  margin: 1rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   SITES & RATES PAGE
   ============================================================ */
.rates-section {
  background-color: var(--cream);
  padding: 5rem 1.5rem;
}

.rates-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.rate-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42,26,14,0.1);
}

.rate-card__image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.rate-card__body {
  padding: 2rem;
}

.rate-card__tag {
  display: inline-block;
  background-color: var(--purple);
  color: #fff;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  margin-bottom: 0.75rem;
}

.rate-card__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.rate-card__desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.rates-table-section {
  background-color: var(--brown-dark);
  padding: 5rem 1.5rem;
}

.rates-table-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.rates-table th {
  background-color: var(--amber);
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  text-align: left;
}

.rates-table td {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.rates-table tr:nth-child(even) td {
  background-color: rgba(255,255,255,0.04);
}

.rates-table td:last-child {
  font-weight: 700;
  color: var(--amber);
}

.policies-section {
  background-color: var(--cream);
  padding: 5rem 1.5rem;
}

.policies-inner {
  max-width: 900px;
  margin: 0 auto;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.policy-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(42,26,14,0.08);
  border-left: 4px solid var(--purple);
}

.policy-item h4 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.policy-item p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .rates-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AMENITIES PAGE
   ============================================================ */
.amenities-page-section {
  background-color: var(--cream);
  padding: 5rem 1.5rem;
}

.amenities-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.amenities-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.amenity-page-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42,26,14,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.amenity-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(42,26,14,0.15);
}

.amenity-page-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.amenity-page-card__body {
  padding: 1.5rem;
}

.amenity-page-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.amenity-page-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
}

.amenity-page-card__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.amenity-page-card__desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   ALTERNATING ROWS (Amenities & Fun On-Site pages)
   Layout: photo with colored accent block left, icon+title+desc right.
   ============================================================ */
.alt-rows-section {
  background-color: var(--cream);
  padding: 3rem 0;
}

.alt-row {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(200,184,154,0.3);
}

.alt-row__photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 300px;
  overflow: visible;
}

.alt-row__accent-block {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 60px;
  height: 60px;
  z-index: 0;
  border-radius: 4px;
}

.alt-row__photo {
  position: relative;
  z-index: 1;
  width: 380px;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.alt-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  background-color: transparent;
}

.alt-row__icon-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.alt-row__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.alt-row__icon svg {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  max-width: 44px;
  max-height: 44px;
  stroke: currentColor;
  flex-shrink: 0;
}

.alt-row__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin: 0;
}

.alt-row__desc {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

@media (max-width: 768px) {
  .alt-row {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }
  .alt-row__photo-wrap {
    width: 100%;
    height: 240px;
  }
  .alt-row__photo {
    width: 100%;
    height: 240px;
  }
  .alt-row__icon-title {
    flex-wrap: wrap;
  }
}

/* ============================================================
   ACTIVITIES PAGE
   ============================================================ */
.activities-page-section {
  background-color: var(--cream);
  padding: 5rem 1.5rem;
}

.activities-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.activities-list-section {
  background-color: var(--section-overlay, var(--brown-dark));
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.activities-list-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.activities-big-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

.activity-big-tag {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 2px solid rgba(255,255,255,0.25);
  padding: 0.6rem 1.4rem;
  border-radius: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.activity-big-tag:hover {
  border-color: var(--amber);
  background-color: rgba(240,160,32,0.1);
}

.faylor-section {
  background-color: var(--sky);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.faylor-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.faylor-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.faylor-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.faylor-content .section-label { color: rgba(255,255,255,0.8); }
.faylor-content .section-title { color: #fff; }
.faylor-content .section-body { color: rgba(255,255,255,0.85); }

@media (max-width: 768px) {
  .faylor-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page-section {
  background-color: var(--cream);
  padding: 5rem 1.5rem;
}

.gallery-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-page-grid {
  columns: 4;
  column-gap: 0.75rem;
  margin-top: 2.5rem;
      display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-page-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
    height: 100%;
    object-fit: cover;
}
.gallery-page-item:hover img { transform: scale(1.04); }

.gallery-page-item__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(110,80,160,0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-page-item:hover .gallery-page-item__overlay { opacity: 1; }

.gallery-page-item__overlay span {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.lightbox__close:hover { background-color: rgba(255,255,255,0.25); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__prev:hover,
.lightbox__next:hover { background-color: rgba(255,255,255,0.25); }

@media (max-width: 768px) {
  .gallery-page-grid { columns: 2; grid-template-columns: 1fr 1fr ; }
}
@media (max-width: 480px) {
  .gallery-page-grid { columns: 1; grid-template-columns: 1fr; }
  .page-hero { height: 490px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
   .page-template-contact section.cta-banner { display: none; }
.contact-inner span.section-label, .contact-inner p.section-body { text-align: center; width: 100%;}
.contact-inner h2.section-title { display:flex; text-align: center;width: 100%; }
.contact-inner p.section-body { margin-left: auto; margin-right: auto; }
.contact-section { background-color: var(--cream); padding: 5rem 1.5rem; }

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(42,26,14,0.08);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  background-color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: #fff;
}

.contact-card__label {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-card__value {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.contact-card__value a {
  color: var(--text);
  transition: color 0.2s ease;
}
.contact-card__value a:hover { color: var(--purple); }

/* .contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42,26,14,0.12);
  margin-top: 1.5rem;
} */

.contact-map iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}
section.map-main-sec .contact-map {
    margin: 0;
}
.contact-form-wrap {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(42,26,14,0.1);
}

.contact-form-wrap h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text);
  background-color: var(--cream);
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
}

.form-group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .contact-map iframe { height: 500px; }
  .contact-inner h2.section-title { display: block; }
}
@media (max-width: 767px) {
.contact-map iframe { height: 400px; }
}
@media (max-width: 480px) {
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-map iframe { height: 350px; }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .home-hero__tree-left,
  .home-hero__tree-right { width: 120px; }
  .home-hero__logo { width: 160px; }
}

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle { display: flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.nav-dropdown__caret { transition: transform 0.2s ease; flex-shrink: 0; }
.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown.is-open .nav-dropdown__caret { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  padding-top: 0.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #1E2E1E;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  min-width: 180px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu li { margin: 0; padding: 0; }
.nav-dropdown__menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown__menu a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-mobile__section-label {
  display: block;
  padding: 0.5rem 0 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  margin-top: 0.25rem;
  font-family: var(--font);
}
.nav-mobile__sub { padding-left: 1.5rem !important; }

/* ============================================================
   MAP & RULES PAGE
   ============================================================ */
.map-section { padding: 5rem 0 4rem; background: var(--cream); }
.map-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.map-section__header { margin-bottom: 2.5rem; }
.map-section__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green); margin-bottom: 1rem; font-family: var(--font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.map-section__header p { color: var(--brown); font-size: 1.05rem; max-width: 680px; margin: 0 auto; line-height: 1.7; }
.map-section__image-wrap { position: relative; display: inline-block; border-radius: 12px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.18); max-width: 100%;    margin-top: 1.5rem; }
.map-section__image-wrap img { display: block; width: 100%; max-width: 900px; height: auto; }
.map-section__print-btn { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.75rem 1.75rem; background: var(--green); color: #fff; border-radius: 0; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s ease, transform 0.2s ease; text-decoration: none; font-family: var(--font); }
.map-section__print-btn:hover { background: #2A3D2A; transform: translateY(-2px); }
.rules-section { padding: 5rem 0; background: var(--cream); }
.rules-section__inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.rules-section__header { text-align: center; margin-bottom: 3.5rem; }
.rules-section__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green); margin-bottom: 1rem; font-family: var(--font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.rules-section__header p { color: var(--brown); font-size: 1.05rem; max-width: 680px; margin: 0 auto; line-height: 1.7; }
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.rule-item { display: flex; gap: 1rem; align-items: flex-start; }
.rule-item__icon { flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; margin-top: 0.1rem; }
.rule-item__icon svg { color: #fff; }
.rule-item__content h3 { font-size: 0.95rem; font-weight: 700; color: var(--green); margin-bottom: 0.4rem; font-family: var(--font); text-transform: uppercase; letter-spacing: 0.04em; }
.rule-item__content p { font-size: 0.9rem; color: #555; line-height: 1.65; margin: 0; }
.rules-section__inner p.rules-section__desc { margin-bottom: 1.5rem; text-align: center; }
@media (max-width: 768px) { .rules-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQS PAGE
   ============================================================ */
.faqs-section { padding: 5rem 0; background: var(--cream); }
.faqs-section__inner { max-width: 980px; margin: 0 auto; padding: 0 2rem; }
.faqs-section__header { text-align: center; margin-bottom: 3.5rem; }
.faqs-section__header .section-title-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.faqs-section__header .section-title-row h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--green); font-family: var(--font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
.faqs-section__header .section-title-tree { width: 32px; height: 32px; object-fit: contain; }
.faqs-section__header p { color: var(--brown); font-size: 1.05rem; line-height: 1.7; max-width: 680px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(45,90,39,0.18); }
.faq-item:first-child { border-top: 1px solid rgba(45,90,39,0.18); }
.faq-item__toggle { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 1rem; padding: 1.4rem 0; text-align: left; }
.faq-item__toggle-icon { flex-shrink: 0; width: 28px; height: 28px; }
.faq-item__question { flex: 1; font-size: 1.05rem; font-weight: 700; color: var(--green); font-family: var(--font); line-height: 1.4; }
.faq-item__chevron { flex-shrink: 0; color: var(--brown); transition: transform 0.3s ease; }
.faq-item--open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__body { display: none; padding: 0 0 1.4rem 2.5rem; }
.faq-item--open .faq-item__body { display: block; }
.faq-item__answer { font-size: 0.95rem; color: #555; line-height: 1.75; margin: 0; }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */
.testimonials-section { padding: 5rem 0; background: var(--cream); }
.testimonials-section__inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.testimonials-section__header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-section__header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green); margin-bottom: 1rem; font-family: var(--font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.testimonials-section__header p { color: var(--brown); font-size: 1.05rem; line-height: 1.7; max-width: 680px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background: #fff; border-radius: 12px; padding: 2rem 1.75rem; box-shadow: 0 4px 20px rgba(0,0,0,0.07); display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.testimonial-card__stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; color: #f5a623; }
.testimonial-card__quote { font-size: 0.95rem; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; flex: 1; }
.testimonial-card__reviewer { font-weight: 700; color: var(--green); font-size: 0.92rem; margin-bottom: 0.25rem; font-family: var(--font); }
.testimonial-card__source { font-size: 0.78rem; color: #888; letter-spacing: 0.04em; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LOCAL ATTRACTIONS PAGE
   ============================================================ */
/* ── Attractions intro ─────────────────────────────────────── */
.attractions-intro { background: var(--cream); padding: 3.5rem 2rem 2rem; text-align: center; }
.attractions-intro__inner { max-width: 860px; margin: 0 auto; }
.attractions-intro__desc { color: var(--brown); font-size: 1rem; line-height: 1.75; margin: 0 auto; max-width: 680px; }

/* ── Attractions sections ───────────────────────────────────── */
.attractions-section { padding: 4rem 0; background: var(--cream); }
.attractions-section--alt { background: var(--cream); }
.attractions-section__inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.attractions-section__heading { text-align: center; margin-bottom: 2.5rem; }
.attractions-section__eyebrow { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.4rem; font-family: var(--font); }
.attractions-section__title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--green); font-family: var(--font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin: 0; }
.attractions-section__header { margin-bottom: 2.5rem; }
.attractions-section__header h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--green); margin-bottom: 0.75rem; font-family: var(--font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.attractions-section__header p { color: var(--brown); font-size: 1rem; line-height: 1.7; max-width: 680px; }
.attractions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.attraction-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.attraction-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.14); }
.attraction-card__img-wrap { position: relative; overflow: hidden; height: 200px; }
.attraction-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.attraction-card:hover .attraction-card__img-wrap img { transform: scale(1.05); }
.attraction-card__dist { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--brown); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 50px; font-family: var(--font); }
.attraction-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.attraction-card__title { font-size: 1.05rem; font-weight: 700; color: var(--green); margin-bottom: 0.6rem; font-family: var(--font); text-transform: uppercase; letter-spacing: 0.03em; }
.attraction-card__desc { font-size: 0.9rem; color: #666; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.attraction-card__link,
.attraction-card__btn { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brown); transition: gap 0.2s ease, color 0.2s ease; text-decoration: none; align-self: flex-start; font-family: var(--font); }
.attraction-card__link:hover,
.attraction-card__btn:hover { gap: 0.65rem; color: var(--green); }
@media (max-width: 900px) { .attractions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .attractions-grid { grid-template-columns: 1fr; } }


/* section-heading-trees */
.section-heading-trees { position: relative; display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; overflow: visible; }
.section-heading-trees__text { text-align: center; flex: 1; max-width: 700px; }
.section-heading-trees__title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--green); font-family: var(--font); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.75rem; }
.section-heading-trees__sub { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.5rem; }
.section-tree { width: 100px; height: auto; flex-shrink: 0; opacity: 0.85; }
.section-tree--right { transform: scaleX(-1); }
@media (max-width: 768px) { .section-tree { width: 60px; } }
@media (max-width: 480px) { .section-tree { display: none; } }

/* section-heading-plain (used on new inner page sections) */
.section-heading-plain { text-align: center; margin-bottom: 1.5rem; }
.section-heading-plain__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--green);
  display: inline;
  align-items: center;
  gap: 0.55em;
}
.section-heading-plain__title::before, .section-heading-plain__title::after {
    content: '';
    display: inline-block;
    width: 2em;
    height: 1em;
    background: url(/wp-content/uploads/2026/03/tent-icon-new.png) center / contain no-repeat;
    opacity: 1;
    position: relative;
    top: 6px;
}
.section-title::before, .section-heading-plain__title:before {
    margin-right: 10px;
}
.section-title:after, .section-heading-plain__title:after {
    margin-right: 10px;
}
.section-heading-plain__title::after { transform: scaleX(-1); }
.section-heading-plain__sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 1rem;
}
@media (max-width: 480px) {
  .section-title::before, .section-title::after,
  .section-heading-plain__title::before, .section-heading-plain__title::after { display: none; }
}

/* ---- ABOUT SECTION TITLE WITH LOGO ---- */
.about-title-wrap {
  display: flex;
  flex-direction: row;
  align-items:center;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
}
.about-title-wrap img.about-title-logo {
    width: 5.756vw;
    max-width: 5.756vw;
    height: 5.756vw;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
    margin-top: 0;
}
.about-title-wrap .section-title {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    width: auto;
    font-size: clamp(1.6rem, 3.3vw, 2.8rem);
}

/* Suppress tent icons on specific titles */
.section-title--no-tents::before,
.section-title--no-tents::after {
  display: none !important;
}
.section-title--no-tents {
  padding: 0;
}

/* ============================================================
   LODGING / SITES PAGE — Colonial Woods-style layout
   ============================================================ */

/* --- Section wrapper --- */
.lodging-type-section {
  background-color: var(--cream);
  padding: 0;
}
.lodging-type-section--alt {
  background-color: var(--cream);
}

/* --- Icon + Title header --- */
.lodging-type-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2.5rem 1.5rem 1.2rem;
}
.lodging-type-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.lodging-type-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin: 0;
}

/* --- Gallery wrapper: constrains both main photo + thumbs --- */
.lodging-type-gallery {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* --- Main photo --- */
.lodging-type-photo {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  border-radius: 12px 12px 0 0;
}
.lodging-type-photo--solo {
  border-radius: 12px;
}
.lodging-type-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.lodging-type-photo--solo img {
  border-radius: 12px;
}

/* --- Thumbnail strip (directly below main photo, same width) --- */
.lodging-type-thumbs {
  display: flex;
  gap: 3px;
  width: 100%;
  margin: 3px 0 0;
  line-height: 0;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}
.lodging-type-thumbs img {
  flex: 1;
  height: 110px;
  object-fit: cover;
  display: block;
  min-width: 0;
  border-radius: 0;
}
.lodging-type-thumbs img:first-child { border-radius: 0 0 0 12px; }
.lodging-type-thumbs img:last-child  { border-radius: 0 0 12px 0; }

/* --- Lightbox trigger anchors inside gallery --- */
.lodging-type-photo a.sb-lightbox-trigger {
  display: block;
  position: relative;
  line-height: 0;
  cursor: zoom-in;
}
.lodging-type-photo a.sb-lightbox-trigger img {
  transition: opacity 0.2s ease;
}
.lodging-type-photo a.sb-lightbox-trigger:hover img { opacity: 0.88; }
.sb-gallery-hint {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font);
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lodging-type-photo a.sb-lightbox-trigger:hover .sb-gallery-hint { opacity: 1; }
.lodging-type-thumbs a.sb-lightbox-trigger {
  display: block;
  flex: 1;
  min-width: 0;
  line-height: 0;
  cursor: zoom-in;
  overflow: hidden;
}
.lodging-type-thumbs a.sb-lightbox-trigger img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lodging-type-thumbs a.sb-lightbox-trigger:hover img { opacity: 0.82; transform: scale(1.04); }
.lodging-type-thumbs a.sb-lightbox-trigger:first-child img { border-radius: 0 0 0 12px; }
.lodging-type-thumbs a.sb-lightbox-trigger:last-child  img { border-radius: 0 0 12px 0; }

/* ===== Lightbox Modal ===== */
.sb-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sb-lightbox.is-open { display: flex; }
.sb-lightbox-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sb-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  display: block;
}
.sb-lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.9;
  transition: opacity 0.15s, background 0.15s;
  z-index: 100000;
}
.sb-lightbox-close:hover { opacity: 1; background: rgba(255,255,255,0.3); }
.sb-lightbox-prev,
.sb-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
  line-height: 1;
}
.sb-lightbox-prev { left: 16px; }
.sb-lightbox-next { right: 16px; }
.sb-lightbox-prev:hover,
.sb-lightbox-next:hover { background: rgba(255,255,255,0.25); }
.sb-lightbox-counter {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 12px;
  letter-spacing: 0.06em;
  font-family: var(--font);
}

/* --- Body (description + rates) --- */
.lodging-type-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
}
.lodging-type-desc {
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* --- RATES heading --- */
.lodging-rates-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}
.lodging-rates-label {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: var(--brown-dark);
  text-transform: uppercase;
}
.lodging-rates-dot {
  font-size: 1.4rem;
  color: var(--brown-dark);
  line-height: 1;
}
.lodging-rates-note {
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

/* --- Rates table (green Colonial Woods style) --- */
.lodging-rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.lodging-rates-table thead tr {
  background-color: var(--brown-dark);
}
.lodging-rates-table th {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.lodging-rates-table th:last-child { border-right: none; }
.lodging-rates-table tbody tr {
  background-color: #2A3D2A;
}
.lodging-rates-table tbody tr:nth-child(even) {
  background-color: #3A4D3A;
}
.lodging-rates-table td {
  font-family: var(--font);
  font-size: 0.92rem;
  color: #fff;
  padding: 0.85rem 1.1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lodging-rates-table td:last-child { border-right: none; }
.lodging-rates-table td:first-child { font-weight: 600; }

/* --- CTA button row --- */
.lodging-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.btn-lodging-primary {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  background-color: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.btn-lodging-primary:hover {
  background-color: var(--green-light);
  border-color: var(--green-light);
  color: #fff;
}
.btn-lodging-outline {
  display: inline-block;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  background-color: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.btn-lodging-outline:hover {
  background-color: var(--green);
  color: #fff;
}

/* --- Things To Know section --- */
.lodging-ttk-section {
  background-color: var(--cream);
  padding: 4rem 1.5rem 5rem;
}
.lodging-ttk-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Heading with tent icons flanking */
.lodging-ttk-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.lodging-ttk-heading-text {
  text-align: center;
}
.lodging-ttk-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin: 0 0 0.1rem;
  line-height: 1.2;
}
.lodging-ttk-subtitle {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin: 0;
}
.lodging-ttk-tree {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.lodging-ttk-tree--right {
  transform: scaleX(-1);
}

/* Policy items */
.lodging-ttk-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.lodging-ttk-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}
.lodging-ttk-item__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.lodging-ttk-item__title {
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-dark);
  margin: 0 0 0.25rem;
}
.lodging-ttk-item__text {
  font-family: var(--font);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .lodging-type-photo img { height: 260px; }
  .lodging-type-thumbs img { height: 70px; }
  .lodging-rates-table th,
  .lodging-rates-table td { padding: 0.6rem 0.6rem; font-size: 0.78rem; }
  .lodging-ttk-tree { width: 50px; height: 50px; }
  .lodging-ttk-heading { gap: 0.8rem; }
  .about-title-wrap img.about-title-logo { width: 20vw; max-width: 20vw; height: 20vw; }
}

/* ============================================================
   INTERIOR PAGE — WOOD TEXTURE ON CREAM SECTIONS ONLY
   The wood texture is applied directly to each cream-background
   section using background-attachment: fixed so it appears as
   one continuous fixed image behind all cream areas.
   Dark sections (brown CTA, footer) and white sections/cards
   are completely unaffected — they have no background-image.
   ============================================================ */
body.sb-interior {
  background-color: var(--cream);
}

/* All sections that use var(--cream) as their background get
   the wood texture blended in at 20% via a pseudo-element */
body.sb-interior .about-section,
body.sb-interior .amenities-section,
body.sb-interior .gallery-preview-section,
body.sb-interior .rates-section,
body.sb-interior .policies-section,
body.sb-interior .amenities-page-section,
body.sb-interior .alt-rows-section,
body.sb-interior .activities-page-section,
body.sb-interior .gallery-page-section,
body.sb-interior .contact-section,
body.sb-interior .map-section,
body.sb-interior .faqs-section,
body.sb-interior .testimonials-section,
body.sb-interior .attractions-intro,
body.sb-interior .attractions-section,
body.sb-interior .lodging-type-section,
body.sb-interior .lodging-ttk-section,
body.sb-interior .rules-section {
  position: relative;
  isolation: isolate;
}

body.sb-interior .about-section::before,
body.sb-interior .amenities-section::before,
body.sb-interior .gallery-preview-section::before,
body.sb-interior .rates-section::before,
body.sb-interior .policies-section::before,
body.sb-interior .amenities-page-section::before,
body.sb-interior .alt-rows-section::before,
body.sb-interior .activities-page-section::before,
body.sb-interior .gallery-page-section::before,
body.sb-interior .contact-section::before,
body.sb-interior .map-section::before,
body.sb-interior .faqs-section::before,
body.sb-interior .testimonials-section::before,
body.sb-interior .attractions-intro::before,
body.sb-interior .attractions-section::before,
body.sb-interior .lodging-type-section::before,
body.sb-interior .lodging-ttk-section::before,
body.sb-interior .rules-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663380230978/WZfmDYxENrVmEjvZeWaAtU/wood-texture_6d939f76.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  opacity: 0.20;
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   TESTIMONIALS PAGE — list layout (centred, spaced)
   ============================================================ */
.testimonials-section__desc {
  text-align: center;
  color: var(--brown);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.testimonial-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.55);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(92,53,32,0.07);
}
.testimonial-item__headline {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.testimonial-item__quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-item__reviewer {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brown);
  margin-bottom: 0.6rem;
}
.testimonial-item__stars {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}
@media (max-width: 600px) {
  .testimonials-list { gap: 1.75rem; }
  .testimonial-item { padding: 1.75rem 1.25rem; }
}
