/* ══════════════════════════════════════
   CRYSTAL PEAK CHOPTA — style.css
   Theme: White / Cream with Forest accents
   ══════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pine:        #1a2e1e;
  --forest:      #2d4a32;
  --moss:        #4a6741;
  --sage:        #5c7a52;
  --cream:       #faf7f2;
  --cream-dark:  #f0ebe0;
  --warm-white:  #ffffff;
  --text-dark:   #1e1e1e;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --gold:        #b8893a;
  --gold-light:  #d4a85a;
  --amber:       #c4693a;
  --border-cream: rgba(184,137,58,0.18);
  --border-dark:  rgba(184,137,58,0.38);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */

/* Reset any nav inside footer/sections — only the #navbar gets fixed positioning */
footer nav,
section nav {
  position: static;
  display: block;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: background 0.6s, backdrop-filter 0.6s, box-shadow 0.6s;
}
#navbar.scrolled {
  background: rgba(26,46,30,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: #fff;
  letter-spacing: 0.04em; text-decoration: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.nav-logo-icon {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  color: #fff;
}
.nav-logo-icon svg {
  width: 100%;
  height: 100%;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 3px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--amber); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.45s, opacity 0.45s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--pine); z-index: 90;
  flex-direction: column; align-items: center; justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { padding: 0.85rem 0; }
.mobile-menu ul li a {
  font-size: 1.2rem; color: rgba(255,255,255,0.85);
  text-decoration: none; font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--gold-light); }
.mobile-book {
  display: inline-block; margin-top: 0.8rem;
  background: var(--gold); color: #fff !important;
  padding: 0.7rem 2rem; border-radius: 3px;
  font-size: 1rem !important; font-family: 'DM Sans', sans-serif !important;
}

/* ══════════════════════════════════════
   HERO SLIDESHOW
══════════════════════════════════════ */
#hero {
  height: 100vh; min-height: 600px;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

/* ── Slide layers sit at z-index 0 ── */
.hero-slides { position: absolute; inset: 0; z-index: 0; }

/*
  ANIMATION TIMELINE (total cycle = 3s per slide):
  ┌──────────────────────────────────────────────────┐
  │  0 – 2.5s  : image visible, zooming OUT (scale   │
  │              1.12 → 1.0) — long slow zoom        │
  │  2.5 – 3s  : zoom-out CONTINUES (1.0 → 0.94)    │
  │              + fade to 0 simultaneously (0.5s)   │
  │  3s        : next slide snaps in, repeats        │
  └──────────────────────────────────────────────────┘
*/

/* Default hidden state — no transition so reset is instant */
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: none;
  will-change: opacity, transform;
  z-index: 0;
}

/* ENTERING: image snaps in at scale(1.12), then zooms out to scale(1.0) over 3.75s */
.slide.active {
  opacity: 1;
  transform: scale(1.0);
  transition:
    opacity   0.075s linear,
    transform 3.75s cubic-bezier(0.05, 0.0, 0.2, 1.0);
  z-index: 1;
}

/* LEAVING: fade out only — no scale change, so image never shrinks below full screen */
.slide.leaving {
  opacity: 0;
  transform: scale(1.0);   /* stay at natural size, just fade */
  transition:
    opacity   0.75s cubic-bezier(0.4, 0.0, 1.0, 1.0);
  z-index: 2; /* stays on top while fading so new slide reveals cleanly beneath */
}

/* 4 hero photos */
.slide-1 { background-image: url('Hero-images/himalayan-mountain-view.webp'); }
.slide-2 { background-image: url('Hero-images/chandrashila-summit-view.webp'); }
.slide-3 { background-image: url('Hero-images/tungnath-temple-mountain-view.webp'); }
.slide-4 { background-image: url('Hero-images/chopta-tungnath-trek-view.webp'); }

/* Dark blackish overlay — always present on every slide */
.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: rgba(0, 0, 0, 0.72);
}

/* ── Hero content — left-aligned, bold ── */
.hero-content {
  position: relative; z-index: 5;
  max-width: 1200px; width: 100%;
  margin: 0 auto; 
  padding-top: 80px; /* clear fixed nav */
  
}

.hero-eyebrow {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 1.05s 0.45s forwards;
}

.hero-title {
  display: flex; flex-direction: column;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800; line-height: 1.0;
  margin-bottom: 1.4rem;
}
.hero-line-1 {
  font-size: clamp(2.8rem, 7vw, 7rem);
  color: #ffffff;
  opacity: 0; animation: fadeUp 1.05s 0.675s forwards;
}
.hero-line-2 {
  font-size: clamp(2.8rem, 7vw, 7rem);
  color: var(--gold-light);
  opacity: 0; animation: fadeUp 1.05s 0.9s forwards;
}
.hero-line-3 {
  font-size: clamp(2.8rem, 7vw, 7rem);
  color: #ffffff;
  opacity: 0; animation: fadeUp 1.05s 1.125s forwards;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.7; max-width: 520px;
  opacity: 0; animation: fadeUp 1.05s 1.35s forwards;
}

.hero-actions {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.05s 1.575s forwards;
}
.btn-hero-primary {
  background: var(--gold); color: #fff;
  padding: 0.85rem 2.2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: background 0.3s, transform 0.3s;
}
.btn-hero-primary:hover { background: var(--amber); transform: translateY(-2px); }
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.7); color: #fff;
  padding: 0.85rem 2.2rem; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-hero-outline:hover { border-color: var(--gold-light); background: rgba(212,168,90,0.15); }

/* Keep old btn-primary/btn-outline for other sections */
.btn-primary {
  background: var(--gold); color: #fff;
  padding: 0.88rem 2rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: background 0.3s, transform 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--amber); transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.55); color: #fff;
  padding: 0.88rem 2rem; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-outline:hover { border-color: var(--gold-light); background: rgba(184,137,58,0.12); }

/* Slide dots — bottom center */
.slide-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 0.55rem;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: background 0.45s, transform 0.45s; padding: 0;
}
.dot.active { background: var(--gold-light); transform: scale(1.4); }

/* ══════════════════════════════════════
   MARQUEE
══════════════════════════════════════ */
.marquee-wrap { background: var(--gold); padding: 0.72rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-item {
  font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #fff; font-weight: 500; display: flex; align-items: center; gap: 1.2rem;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════
   SHARED
══════════════════════════════════════ */
section { padding: 4rem 3rem; }

.section-label {
  display: block; font-size: 0.64rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
  
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.17; color: var(--text-dark);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; color: var(--text-mid); margin-bottom: 3rem;
}

/* ══════════════════════════════════════
   ABOUT — cream background
══════════════════════════════════════ */
#about {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-image-stack { position: relative; height: 520px; overflow: hidden; }
.about-img { position: absolute; border-radius: 4px; transition: transform 0.6s; }
.about-img:hover { transform: scale(1.025); }
.about-img-main {
  width: 75%; height: 400px; top: 0; right: 0;
  background: url('room-images/outside-camp-view.webp') center/cover;
  box-shadow: 0 14px 44px rgba(0,0,0,0.13);
}
.about-img-accent {
  width: 55%; height: 280px; bottom: 0; left: 0;
  background: url('room-images/inside-camp-view.webp') center/cover;
  border: 4px solid var(--cream); box-shadow: 0 8px 30px rgba(0,0,0,0.11);
}
.about-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--gold); color: #fff;
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; text-align: center; z-index: 2;
  box-shadow: 0 4px 20px rgba(184,137,58,0.45);
}
.about-badge strong { font-size: 1.4rem; line-height: 1; }
.about-badge span { font-size: 0.5rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

.about-text .section-title { margin-bottom: 1.4rem; }
.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.85; color: var(--text-mid); margin-bottom: 1.1rem;
}
.about-features { display: flex; gap: 1.8rem; margin-top: 2rem; flex-wrap: wrap; }
.feat-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--moss); font-weight: 500; }
.feat-icon { font-size: 1.1rem; }

/* ══════════════════════════════════════
   PACKAGES — full background image
══════════════════════════════════════ */
#packages {
  position: relative;
  padding: 7rem 3rem;
  text-align: center;
  overflow: hidden;
}

/* Background image layer */
.packages-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('Hero-images/himalayan-mountain-view.webp') center/cover no-repeat;
}
.packages-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgb(250, 247, 242) 0%, rgba(255, 255, 255, 0.408) 40%, rgba(255, 255, 255, 0.271) 52%, rgba(255, 255, 255, 0.151) 64%, transparent 78%);
  pointer-events: none;
  z-index: 1;
}

/* Dark overlay so cards are readable */
.packages-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.12) 18%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.72) 100%);
}

/* All content sits above bg */
.packages-inner {
  position: relative; z-index: 3;
  max-width: 1100px; margin: 0 auto;
}

/* Header text — white on dark bg */
.packages-header { margin-bottom: 3.5rem; }

.section-label-white {
  display: block;
  font-size: 0.65rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.6rem;
}
.section-title-white {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.1; color: #fff; margin-bottom: 1rem;
}
.section-title-white em { color: var(--gold-light); font-style: italic; }
.packages-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: rgba(255,255,255,0.65);
  max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.packages-sub strong { color: rgba(255,255,255,0.85); }

/* Cards grid */
.packages-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}

/* Card base — glassmorphism on dark bg */
.package-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  padding: 2.4rem 2rem; border-radius: 8px;
  text-align: center; position: relative; overflow: hidden;
  transition: transform 0.45s, background 0.45s, border-color 0.45s;
  display: flex; flex-direction: column;
}
.package-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,168,90,0.5);
}

/* Featured card */
.package-card.featured {
  background: rgba(184,137,58,0.18);
  border-color: var(--gold-light);
  transform: translateY(-6px);
}
.package-card.featured:hover { transform: translateY(-14px); }

.featured-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.28rem 1rem; border-radius: 0 0 6px 6px;
}

/* Top section */
.pkg-top { margin-bottom: 1.2rem; }
.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #fff;
  margin-bottom: 0.5rem; margin-top: 0.5rem;
}
.package-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* Price block */
.pkg-price-block {
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 1.2rem 0; margin-bottom: 1.4rem;
}
.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; color: var(--gold-light);
  line-height: 1;
}
.pkg-per {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  margin-top: 0.2rem; letter-spacing: 0.05em;
}

/* Perks list */
.package-perks {
  list-style: none; margin-bottom: 1.8rem; flex: 1;
  text-align: left;
}
.package-perks li {
  font-size: 0.82rem; color: rgba(255,255,255,0.78);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 0.7rem;
}
.package-perks li::before {
  content: '✓';
  color: var(--gold-light); font-weight: 700; flex-shrink: 0;
}
/* Book button */
.pkg-btn {
  width: 100%; padding: 0.9rem;
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer; border-radius: 4px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  margin-top: auto;
}
.pkg-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-1px); }
.package-card.featured .pkg-btn { background: var(--gold); border-color: var(--gold); color: #fff; }
.package-card.featured .pkg-btn:hover { background: var(--amber); border-color: var(--amber); }

/* ══════════════════════════════════════
   AMENITIES — cream-dark background
══════════════════════════════════════ */
#amenities {
  background: var(--cream-dark);
  padding: 4rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
.amenities-left .section-title { margin-bottom: 1rem; }
.amenities-left > p { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.1rem; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.amenity-item {
  background: var(--warm-white); border: 1px solid var(--border-cream);
  padding: 1.1rem; border-radius: 6px; 
  transition: border-color 0.2s, box-shadow 0.2s; /* Fixed the stray 's' */
}

.amenity-item:hover { border-color: var(--border-dark); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.amenity-emoji { font-size: 1.4rem; margin-bottom: 0.45rem; }
.amenity-name { font-size: 0.8rem; font-weight: 500; color: var(--text-dark); }
.amenity-desc { font-size: 0.7rem; color: var(--text-light); margin-top: 0.18rem; }

.trek-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.trek-card {
  background: var(--warm-white); border: 1px solid var(--border-cream);
  border-radius: 6px; padding: 1.3rem 1.5rem;
  display: flex; align-items: center; gap: 1.1rem;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.trek-card:hover { transform: translateX(5px); border-color: var(--border-dark); box-shadow: 0 4px 18px rgba(0,0,0,0.07); }
.trek-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--gold); opacity: 0.32; min-width: 2.4rem; }
.trek-info h4 { font-size: 0.92rem; color: var(--text-dark); margin-bottom: 0.28rem; font-weight: 500; }
.trek-info p { font-size: 0.76rem; color: var(--text-light); line-height: 1.5; }
.trek-dist { margin-left: auto; text-align: right; font-size: 0.7rem; color: var(--gold); white-space: nowrap; }

/* ══════════════════════════════════════
   GALLERY — white background
══════════════════════════════════════ */
#gallery { background: var(--warm-white); }
#gallery .section-title { margin-bottom: 2.2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 0.75rem; max-width: 1200px; margin-top: 1.8rem;
  border-radius: 6px; overflow: hidden;
}
.gallery-item { position: relative; cursor: pointer; overflow: hidden; background-size: cover; background-position: center; transition: transform 0.75s ease; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item:hover { transform: scale(1.04); }
/* Gallery images — local files */
.g1 { background-image: url('gallery/mountain-view.webp'); }
.g2 { background-image: url('room-images/inside-camp-view.webp'); }
.g3 { background-image: url('gallery/chopta-view.webp'); }
.g4 { background-image: url('gallery/tungnath-temple-view.webp'); }
.g5 { background-image: url('gallery/snow-mountain-view.webp'); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,28,17,0.72) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.45s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { font-size: 0.76rem; color: #fff; letter-spacing: 0.08em; }

/* ══════════════════════════════════════
   TESTIMONIALS — cream background
   Left card slides from LEFT
   Middle card slides from BOTTOM
   Right card slides from RIGHT
══════════════════════════════════════ */
#testimonials { background: var(--cream); text-align: center; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.4rem; max-width: 1100px; margin: 2.5rem auto 0;
}
.testimonial-card {
  background: var(--warm-white); border: 1px solid var(--border-cream);
  padding: 0.5rem; border-radius: 6px; text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.testimonial-card:hover { border-color: var(--border-dark); box-shadow: 0 10px 34px rgba(0,0,0,0.09); }
.testimonial-image {
  position: relative;
  width: calc(100% + 3.6rem);
  margin: -1.8rem -1.8rem 1rem;
  min-height: 170px;
  border-radius: 6px 6px 0 0;
  background-size: cover;
  background-position: center;
}
.testimonial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 100%);
}
.testimonial-image-1 { background-image: url('room-images/camping-site-mountain-view.webp'); }
.testimonial-image-2 { background-image: url('room-images/inside-camp-view.webp'); }
.testimonial-image-3 { background-image: url('room-images/outside-camp-view.webp'); }
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.04rem;
  color: var(--text-mid); line-height: 1.75; margin-bottom: 1.3rem; font-style: italic;
}
.testimonial-author { font-size: 0.75rem; color: var(--moss); font-weight: 500; }
.testimonial-author time { color: var(--text-light); font-weight: 400; }

/* Directional reveal classes */
.reveal-left {
  opacity: 0; transform: translateX(-80px);
  transition: opacity 1.125s cubic-bezier(0.34,1.56,0.64,1), transform 1.125s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal-up {
  opacity: 0; transform: translateY(60px);
  transition: opacity 1.125s cubic-bezier(0.34,1.56,0.64,1), transform 1.125s cubic-bezier(0.34,1.56,0.64,1);
  transition-delay: 0.18s;
}
.reveal-right {
  opacity: 0; transform: translateX(80px);
  transition: opacity 1.125s cubic-bezier(0.34,1.56,0.64,1), transform 1.125s cubic-bezier(0.34,1.56,0.64,1);
  transition-delay: 0.36s;
}
  .about-img-accent.reveal-right {
    transform: translateX(220px);
    transition: opacity 2.8s cubic-bezier(0.34,1.56,0.64,1), transform 2.8s cubic-bezier(0.34,1.56,0.64,1);
  }
.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible { opacity: 1; transform: translate(0,0); }

/* ══════════════════════════════════════
   BOOKING — dark pine background
══════════════════════════════════════ */
#booking {
  background: var(--pine);
  text-align: center; position: relative; overflow: hidden;
}
#booking::before {
  content: ''; position: absolute; inset: 0;
  background: url('Hero-images/himalayan-mountain-view.webp') center/cover;
  opacity: 0.17;
}
.booking-inner { position: relative; max-width: 700px; margin: 0 auto; }
#booking .section-label { color: var(--gold-light); }
#booking .section-title { color: #fff; font-size: clamp(1.9rem,4vw,3.2rem); margin-bottom: 0.8rem; }
#booking > .booking-inner > p {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: rgba(255,255,255,0.68); margin-bottom: 2.2rem;
}
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.9rem; text-align: left; margin-bottom: 1rem;
}
.form-group label {
  display: block; font-size: 0.64rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 0.35rem;
}
.form-group input,
.form-group select {
  width: 100%; padding: 0.78rem 0.95rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 3px; color: #fff; font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold-light); background: rgba(255,255,255,0.12); }
.form-group select option { background: var(--pine); color: #fff; }
.form-full { grid-column: 1 / -1; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: #25D366; color: #fff;
  padding: 0.95rem 2.5rem; border-radius: 3px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, transform 0.2s;
  width: 100%; justify-content: center; margin-top: 0.4rem;
}
.whatsapp-btn:hover { background: #1ebe5a; transform: translateY(-2px); }
.whatsapp-icon { font-size: 1.15rem; }
.booking-call { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 0.7rem; }
.booking-call a { color: var(--gold-light); text-decoration: none; }

/* ══════════════════════════════════════
   BOOKING POPUP
══════════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 250;
  padding: 1.5rem;
}
.popup-overlay.active {
  display: flex;
}
.popup-modal {
  width: min(650px, 100%);
  max-width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 72px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}
.popup-body {
  padding: 2rem 2.2rem 1.8rem;
}
.popup-header {
  margin-bottom: 1.5rem;
}
.popup-header h2 {
  margin: 0; font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05; color: #1b1b1b;
}
.popup-header p {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  color: #4a4a4a;
  line-height: 1.75;
}
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  color: #222;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.popup-close:hover {
  background: rgba(0,0,0,0.05);
}
.popup-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  margin-top: 1.2rem;
}
.popup-form .form-group label,
.popup-form .form-group input,
.popup-form .form-group select {
  color: #1b1b1b;
}
.popup-form .form-group input,
.popup-form .form-group select {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.1);
}
.popup-form .form-group select option {
  background: #fff;
  color: #1b1b1b;
}
.popup-form .form-full {
  grid-column: 1 / -1;
}
.popup-footer {
  margin-top: 1rem;
}
.popup-footer .whatsapp-btn {
  background: #ff6200;
  color: #fff;
}
.popup-footer .whatsapp-btn:hover {
  background: #e35b00;
}
@media (max-width: 760px) {
  .popup-modal { width: 100%; }
  .popup-body { padding: 1.4rem 1.2rem 1.2rem; }
  .popup-form { grid-template-columns: 1fr; }
  .popup-close { top: 0.85rem; right: 0.85rem; }
}

/* ══════════════════════════════════════
   HOW TO REACH — white background
══════════════════════════════════════ */
#reach {
  background: var(--warm-white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.reach-text .section-title { margin-bottom: 1.8rem; }
.route-step { display: flex; gap: 1.1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.route-num {
  min-width: 2rem; height: 2rem; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  font-family: 'Playfair Display', serif; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem; flex-shrink: 0;
}
.route-info h3 { color: var(--text-dark); font-size: 0.9rem; margin-bottom: 0.25rem; font-weight: 600; }
.route-info p { color: var(--text-light); font-size: 0.8rem; line-height: 1.65; }

/* Google Map embed */
.reach-map {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border-cream);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex; flex-direction: column;
  margin-top: 7rem;
}
.reach-map iframe { flex: 1; height: 340px; display: block; border: 0; }
.map-link-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1rem; background: var(--cream-dark);
  border-top: 1px solid var(--border-cream);
  font-size: 0.74rem; color: var(--text-mid); gap: 0.5rem; flex-wrap: wrap;
}
.map-link-bar a { color: var(--gold); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.map-link-bar a:hover { color: var(--amber); }

/* ══════════════════════════════════════
   CONTACT CTA — image background
══════════════════════════════════════ */
.contact-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 420px;
  color: #fff;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('image.png') center/cover no-repeat;
  filter: brightness(0.45);
  z-index: 1;
}
.contact-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(10, 17, 14, 0.504) 45%, rgba(10, 17, 14, 0) 100%);
  z-index: 2;
}
.contact-cta-inner {
  position: relative;
  z-index: 3;
  max-width: 920px;
}
.contact-cta h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  margin-bottom: 1rem;
  line-height: 1.02;
}
.contact-cta p {
  margin: 0 auto 2rem;
  max-width: 760px;
  color: rgba(255,255,255,0.92);
  line-height: 1.85;
  font-size: 1rem;
}
.contact-cta .btn-primary {
  background: var(--gold);
  color: #1a2e1e;
  padding: 1rem 2.25rem;
}
.contact-cta .btn-primary:hover {
  background: var(--amber);
}

/* ══════════════════════════════════════
   FOOTER — dark pine
══════════════════════════════════════ */
.footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--gold-light); margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.48); line-height: 1.7; max-width: 250px; }
footer {
  position: relative;
  overflow: hidden;
  background: var(--pine);
  border-top: none;
  padding: 3.5rem 3rem 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('image.png') center/cover no-repeat;
  background-position: center bottom;
  filter: brightness(0.9) contrast(1);
  transform: translateY(-17%);
  z-index: 1;
}
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.504) 0%, rgba(0, 0, 0, 0.614) 45%, rgb(0, 0, 0) 100%);
  z-index: 2;
}
footer > * {
  position: relative;
  z-index: 3;
}
.footer-col h5 {
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-col address { font-style: normal; font-size: 0.8rem; color: rgba(255,255,255,0.48); line-height: 1.9; }
.footer-col address a { color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.3s; }
.footer-col address a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  background: rgb(0, 0, 0); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 3rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.28); }

/* ══════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulseWA 4.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }

/* ══════════════════════════════════════
   GENERIC SCROLL REVEAL
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.125s ease, transform 1.125s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Note: Duration controlled by animation property values in classes above */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.22; }
}
@keyframes pulseWA {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.78); }
}
/* Note: Duration is 4.5s via .wa-float animation property */

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  section { padding: 4rem 1.5rem; }
  /* Mobile: remove background image from Get In Touch CTA for better readability */
  .contact-cta::before { display: none; }
  #packages { padding: 4rem 1.5rem; }

  #about, #amenities, #reach { grid-template-columns: 1fr; gap: 2.5rem; }
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .package-card.featured { transform: translateY(0); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item:first-child { grid-row: auto; }

  footer { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; }

  .booking-form { grid-template-columns: 1fr; }
  .about-image-stack { height: 340px; }
  .about-img-main { width: 80%; height: 300px; }
  .about-img-accent { width: 62%; height: 220px; }
}

@media (max-width: 480px) {
  .hero-line-1, .hero-line-2, .hero-line-3 { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; justify-content: center; }
  .packages-grid { max-width: 100%; }
  footer { grid-template-columns: 1fr; }
  .contact-cta { padding: 2.5rem 1rem; min-height: auto; }
  .contact-cta h2 { font-size: 2.4rem; }
  .contact-cta p { font-size: 0.95rem; }
}