/* ============================================================
   NourOutdoor — style.css
   Custom properties · Base styles · Components · Animations
   ============================================================ */

/* ─── 1. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-cream:   #F0EBE2;
  --bg-light:   #F3EDE3;
  --bg-night:   #1E2535;
  --bg-card:    #242C3D;

  /* Text */
  --text-ink:   #2A1F14;
  --text-mid:   #5C4A35;
  --text-cream: #F0EBE2;

  /* Accents */
  --lime:       #B3FF00;   /* CTA only — DARK backgrounds only */
  --cedar:      #3D5236;   /* Green on LIGHT backgrounds */
  --cobalt:     #3D6080;
  --terra:      #9E7B55;

  /* Shadows */
  --shadow-soft:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-medium: 0 8px 28px rgba(0,0,0,0.13);
  --shadow-card:   0 4px 20px rgba(0,0,0,0.09);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  300ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ─── 3. TYPOGRAPHY ─────────────────────────────────────────── */

/* Display headlines — Barlow Condensed, all-caps */
h1, h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.92;
}

/* Sub-headings — Playfair Display, italic */
h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  line-height: 1.3;
}

/* Body */
p, li {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

/* Mono labels / eyebrows */
.label,
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Arabic text */
[lang="ar"],
.font-arabic {
  font-family: 'Noto Naskh Arabic', serif;
}

/* ─── 4. NAVIGATION ─────────────────────────────────────────── */
#nav {
  transition: background-color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}

/* State applied by JS on scroll */
#nav.scrolled {
  background-color: rgba(30, 37, 53, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(240, 235, 226, 0.08);
}

/* Nav links — always on dark bg → cream text */
.nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.55);   /* cream/55 — visible on dark nav */
  padding: 8px 14px;
  border-radius: 100px;
  transition: color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.nav-link:hover {
  color: #F0EBE2;
  background-color: rgba(240, 235, 226, 0.07);
}

/* Mobile nav links — dark background, cream text */
.mobile-nav-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.65);   /* cream/65 on dark bg */
  padding: 14px 0;
  border-bottom: 1px solid rgba(240, 235, 226, 0.07);
  display: block;
  transition: color var(--dur) var(--ease),
              padding-left var(--dur) var(--ease);
}
.mobile-nav-link:hover {
  color: #F0EBE2;
  padding-left: 8px;
}
.mobile-nav-link:last-child {
  border-bottom: none;
}

/* ─── 5. BUTTONS ────────────────────────────────────────────── */

/* PRIMARY — lime on dark background only */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-ink);           /* dark text on lime — correct contrast */
  background-color: var(--lime);
  border-radius: 100px;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background-color: #c4ff1a;        /* lime slightly brighter on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 255, 0, 0.28);
}
.btn-primary:active {
  transform: translateY(0);
}

/* GHOST — outline, on dark background → cream border + cream text */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.75); /* cream/75 — readable on dark bg */
  background: transparent;
  border: 1px solid rgba(240, 235, 226, 0.28);
  border-radius: 100px;
  padding: 13px 28px;
  cursor: pointer;
  transition: color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.btn-ghost:hover {
  color: #F0EBE2;
  border-color: rgba(240, 235, 226, 0.55);
  background-color: rgba(240, 235, 226, 0.06);
}

/* CEDAR — for CTAs on LIGHT backgrounds (replaces lime) */
.btn-cedar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F0EBE2;                   /* cream text on cedar — correct contrast */
  background-color: var(--cedar);
  border-radius: 100px;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn-cedar:hover {
  background-color: #4a6342;
  transform: translateY(-2px);
}

/* ─── 6. SECTION EYEBROW LABELS ────────────────────────────── */

/* Light section eyebrow → cedar (dark green, readable on cream) */
.eyebrow-light {
  color: var(--cedar);
}
.eyebrow-light .eyebrow-line {
  background-color: rgba(61, 82, 54, 0.50);
}

/* Dark section eyebrow → lime (bright on dark) */
.eyebrow-dark {
  color: var(--lime);
}
.eyebrow-dark .eyebrow-line {
  background-color: rgba(179, 255, 0, 0.55);
}

/* ─── 7. CARDS ──────────────────────────────────────────────── */

/* Adventure cards — LIGHT background */
.adventure-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  /* All text inside is on white — use ink/inkMid */
}
.adventure-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
/* Image zoom on card hover */
.adventure-card:hover img {
  transform: scale(1.06);
}
.adventure-card img {
  transition: transform 0.5s var(--ease);
}
/* Image badge — dark bg on image → cream text. Correct. */
.adventure-card .img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(30,37,53,0.75);
  color: #F0EBE2;                   /* cream on dark badge */
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 100px;
}

/* Card image placeholder — shown until real images wired up */
.card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);    /* light text on colored bg */
}

/* Testimonial cards — bg color set per-card via Tailwind (bg-white or bg-night) */
/* Do NOT set background-color here — each card declares its own via Tailwind  */
.testimonial-card {
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Stars — cedar on white card (contrast OK: 5.1:1) */
.stars {
  color: var(--cedar);
  font-size: 16px;
  letter-spacing: 2px;
}

/* ─── 8. LANGUAGE BADGES (About section) ───────────────────── */
/* Light background card — dark text badge */
.badge {
  display: inline-block;
  white-space: nowrap;              /* prevent wrapping e.g. "MULTI-DAY" */
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cedar);              /* cedar text on light badge — readable */
  background-color: rgba(61, 82, 54, 0.10);
  border: 1px solid rgba(61, 82, 54, 0.22);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ─── 9. FORMS ──────────────────────────────────────────────── */
.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mid);           /* readable on white form bg */
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--text-ink);           /* dark text on white input */
  background-color: #ffffff;
  border: 1.5px solid rgba(158, 123, 85, 0.30);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.form-input:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(61, 96, 128, 0.12);
}
.form-input::placeholder {
  color: rgba(92, 74, 53, 0.40);    /* placeholder: muted inkMid */
}

/* Step option cards (adventure type) */
.type-option {
  border: 1.5px solid rgba(158, 123, 85, 0.25);
  border-radius: 14px;
  padding: 20px 12px;
  text-align: center;
  font-size: 24px;
  background: #ffffff;
  color: var(--text-ink);           /* dark text on white — readable */
  cursor: pointer;
  transition: border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.type-option:hover {
  border-color: var(--cobalt);
  background-color: rgba(61, 96, 128, 0.05);
  transform: translateY(-2px);
}
.type-option.selected {
  border-color: var(--cedar);
  background-color: rgba(61, 82, 54, 0.07);
  box-shadow: 0 0 0 3px rgba(61, 82, 54, 0.14);
}
/* Type option label text — dark on white */
.type-option span {
  color: var(--text-ink);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

/* Form step transition */
.form-step {
  animation: fadeSlideIn 0.3s var(--ease) both;
}
.form-step.hidden {
  display: none;
}

/* ── Radio pill buttons (single-select) ──────────────────────
   White card bg → ink text, lime border when selected.
   Lime border is decorative — text stays ink (no contrast issue) */
.radio-pill {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(44, 31, 20, 0.12);
  border-radius: 12px;
  background: transparent;
  color: var(--text-ink);              /* dark text on white — always readable */
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.radio-pill:hover {
  border-color: rgba(61, 82, 54, 0.30);
  background-color: rgba(61, 82, 54, 0.04);
}
.radio-pill.selected {
  border-color: #B3FF00;               /* lime border — decorative only, text stays ink */
  background-color: rgba(179, 255, 0, 0.07);
  font-weight: 500;
}

/* ── Checkbox pill labels ─────────────────────────────────────
   White card bg → ink text. Checked state gets lime border. */
.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid rgba(44, 31, 20, 0.12);
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-ink);              /* dark text on white — readable */
  transition: border-color 0.2s ease, background-color 0.2s ease;
  user-select: none;
}
.checkbox-pill:hover {
  border-color: rgba(61, 82, 54, 0.30);
  background-color: rgba(61, 82, 54, 0.04);
}
.checkbox-pill:has(input:checked) {
  border-color: #B3FF00;
  background-color: rgba(179, 255, 0, 0.07);
}
.checkbox-pill input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--cedar);
  cursor: pointer;
}

/* ── Back link in form steps ─────────────────────────────────
   inkMid text on white — readable */
.btn-back-link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(92, 74, 53, 0.55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.btn-back-link:hover {
  color: var(--text-ink);
}

/* ── Step dots ───────────────────────────────────────────────
   Filled dot = bg-ink, unfilled = bg-ink/20. Both on white — fine. */
.step-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

/* ─── 10. GALLERY ───────────────────────────────────────────── */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 16px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* Caption overlay — cream text on dark overlay */
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,37,53,0.80) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-caption p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.82); /* cream on dark overlay — readable */
  line-height: 1.5;
}

/* Lightbox — display toggled via inline style in JS (avoids specificity conflicts).
   Do NOT set display:none here — the ID selector overrides .flex. */
#lightbox {
  display: none;            /* initial state only — JS overwrites with inline style */
  align-items: center;
  justify-content: center;
}
#lb-img {
  transition: opacity 0.12s ease;
  border-radius: 12px;
}

/* ─── 11. FOOTER ────────────────────────────────────────────── */
/* Dark bg (--bg-night) → cream text. All links cream/45 on dark */
.footer-link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: rgba(240, 235, 226, 0.45);   /* cream/45 on night — readable */
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
}
.footer-link:hover {
  color: rgba(240, 235, 226, 0.85);
}


/* ─── 12. HERO ──────────────────────────────────────────────── */
#hero {
  /* Text in hero is always on dark overlay → always cream */
  background-color: var(--bg-night); /* fallback if image fails */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,7,4,0.82) 0%, rgba(10,7,4,0.48) 55%, rgba(10,7,4,0.12) 100%),
    linear-gradient(to top,    rgba(20,25,35,0.95) 0%, rgba(20,25,35,0.30) 45%, transparent 70%);
  pointer-events: none;
}

/* Hero headline mix: serif italic + display condensed */
.hero-headline-serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  color: #F0EBE2;                   /* cream on dark hero — readable */
  line-height: 1.05;
}
.hero-headline-display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: rgba(240,235,226,0.95);    /* cream on dark hero */
  line-height: 0.9;
}

/* Hero sub-text — cream with reduced opacity (NOT dark text) */
.hero-body {
  color: rgba(240, 235, 226, 0.68); /* cream/68 on dark overlay */
}

/* Stat bar items — lime label on dark bg */
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--lime);               /* lime on dark bg — correct */
}
.stat-sublabel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.35); /* cream/35 — subtle on dark */
}

/* ─── 12. UPCOMING TRIPS (dark section) ─────────────────────── */
/* All text in #trips is on --bg-night → must be cream variants */
.trip-card {
  background-color: var(--bg-card); /* slightly lighter than night */
  border: 1px solid rgba(240, 235, 226, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.trip-card:hover {
  border-color: rgba(179, 255, 0, 0.30);
  transform: translateX(4px);
}

/* Mobile: stack title row above badge+button row */
@media (max-width: 540px) {
  .trip-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .trip-card > div:last-child {
    width: 100%;
    justify-content: space-between;
  }
}
/* Trip text on dark card */
.trip-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
  color: #F0EBE2;                   /* cream on dark card */
}
.trip-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 235, 226, 0.42); /* cream/42 on dark */
}
/* Difficulty badges on dark bg */
.badge-easy     { color: var(--lime);  background: rgba(179,255,0,0.10);  border: 1px solid rgba(179,255,0,0.25); }
.badge-moderate { color: #7FB3D3;      background: rgba(61,96,128,0.18);  border: 1px solid rgba(61,96,128,0.35); }
.badge-hard     { color: #C9A87A;      background: rgba(158,123,85,0.18); border: 1px solid rgba(158,123,85,0.35); }
.trip-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 12px;
}

/* ─── 13. BOOKING SECTION (cobalt/dark bg) ──────────────────── */
/* Section h2 on cobalt gradient → cream. Paragraph colors
   handled by Tailwind utilities per-element (text-cream/60, text-lime,
   text-inkMid/70 etc.) — do NOT override p globally here as the
   white form card paragraphs need dark ink text.                */
#booking h2 { color: #F0EBE2; }

/* Form wrapper on dark booking bg → white card (handled in HTML) */
/* Inside the white form card — text is ink (dark on white) */

/* Progress bar on white card */
#progress-bar {
  background-color: var(--lime);   /* lime bar inside white card is fine: lime with dark % text */
}

/* ─── 14. CONTACT SECTION (light bg) ───────────────────────── */
/* All text in #contact is on --bg-light → use ink/cedar.
   Link colors are set per-element via Tailwind utilities
   (text-ink, text-cobalt etc.) — no blanket override here
   to preserve per-link intended colors (e.g. "Open map →"
   should be cobalt, not ink).                                   */
#contact h2       { color: var(--text-ink); }
#contact .contact-label { color: var(--cedar); }

/* ─── 15. FOOTER (dark bg) ──────────────────────────────────── */
/* All footer text is on --bg-night → cream only, lime on hover */
footer p, footer a { color: rgba(240, 235, 226, 0.35); }
footer a:hover     { color: var(--lime); }
footer .brand-name { color: #F0EBE2; }

/* ─── 16. ABOUT SECTION (light bg) ──────────────────────────── */
/* Text on --bg-cream → ink and inkMid (dark on light — OK) */
#about h2    { color: var(--text-ink); }
#about p     { color: var(--text-mid); }
#about .eyebrow { color: var(--cedar); }

/* Guide photo frame */
.guide-photo-frame {
  border-radius: 18px;
  border: 2px solid rgba(61, 82, 54, 0.28);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

/* ─── 17. SCROLL REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease),
              transform 0.55s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for child elements */
.reveal-delay-1 { transition-delay: 80ms;  }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ─── 18. KEYFRAME ANIMATIONS ───────────────────────────────── */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.pulse-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
.bounce-down {
  animation: bounce-down 1.6s ease-in-out infinite;
}

/* ─── 19. SCROLL-TO-TOP BUTTON ──────────────────────────────── */
#scroll-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ─── 20. WHATSAPP FAB ──────────────────────────────────────── */
#whatsapp-fab {
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.40);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
#whatsapp-fab:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

/* ─── 21. UTILITY ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section padding */
.section-py {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .section-py {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* Topo decorative lines (hero right side) */
.topo-lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  pointer-events: none;
  opacity: 0.045;
  z-index: 2;  /* above image, below content (z-10) */
}

/* ─── 22. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 640px) {
  /* Mobile: stack adventure cards fully */
  .adventure-card { border-radius: 12px; }

  /* Mobile: booking form full-width */
  #booking .max-w-2xl { border-radius: 20px; padding: 32px 20px; }

  /* Mobile: gallery single column */
  #gallery-grid { columns: 1; }

  /* Slightly smaller hero headline on very small screens */
  #hero h1 { font-size: clamp(48px, 12vw, 72px); }
}

@media (min-width: 640px) and (max-width: 1024px) {
  /* Tablet: 2-column adventure grid */
  #adventures .grid { grid-template-columns: repeat(2, 1fr); }
}

/* Touch targets — minimum 48px */
button, a {
  min-height: unset; /* don't force height, but paddings give 48px where needed */
}
@media (max-width: 768px) {
  .btn-primary, .btn-ghost, .btn-cedar {
    padding: 15px 28px;
    min-height: 52px;
  }
  #mobile-menu a {
    padding: 12px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
}

/* ─── 23. FOCUS / ACCESSIBILITY ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Skip to main content (accessibility) */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--lime);
  color: var(--text-ink);
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus {
  top: 0;
}
