/* ============================================
   CAMP OSPREY - GROUND-UP REBUILD v2
   The most incredible camp website ever built.
   ============================================ */

:root {
  --navy: #1a2744;
  --navy-light: #2a3f6a;
  --sky: #4a90d9;
  --sky-light: #7ab8f5;
  --teal: #2dd4a8;
  --teal-dark: #1fb892;
  --forest: #2d6a4f;
  --forest-light: #40916c;
  --sunset: #f4845f;
  --sunset-dark: #e05a33;
  --gold: #f9c74f;
  --gold-dark: #f0a500;
  --cream: #fef9ef;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 30px rgba(45,212,168,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-hand: 'Caveat', cursive;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 80px; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--cream); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; overflow: hidden; }
.accent { color: var(--teal); }
.handwritten { font-family: var(--font-hand); font-size: 1.8rem; color: var(--navy); margin-bottom: 16px; }

/* ========== CONFETTI ========== */
#confettiCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }

/* ========== FIREFLY CANVAS ========== */
#fireflyCanvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9998; opacity: 0.7; }

/* ========== PRELOADER ========== */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: linear-gradient(135deg, var(--navy) 0%, #0f1a2e 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.preloader-logo { width: 120px; height: 120px; object-fit: contain; animation: preloaderPulse 1.5s ease-in-out infinite; margin: 0 auto 24px; }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.8; } }
.preloader-bar { width: 200px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden; margin: 0 auto 16px; }
.preloader-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--teal), var(--sky)); border-radius: 4px; animation: preloaderFill 2s ease forwards; }
@keyframes preloaderFill { to { width: 100%; } }
.loading-text { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-family: var(--font-body); }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0; transition: all 0.4s var(--ease);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(26, 39, 68, 0.95); backdrop-filter: blur(20px);
  padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-container { max-width: 1300px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 44px; height: 44px; object-fit: contain; transition: transform 0.3s; }
.nav-logo:hover .nav-logo-img { transform: rotate(-10deg) scale(1.1); }
.nav-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--white); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.85); padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; transition: all 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--teal); color: var(--navy) !important; padding: 10px 22px;
  border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(45,212,168,0.4); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: 50px; font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; cursor: pointer; transition: all 0.3s var(--ease);
  border: none; position: relative; overflow: hidden;
}
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(45,212,168,0.4); }
.btn-ghost { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.3); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: var(--white); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-glow { animation: btnGlow 2s ease-in-out infinite; }
@keyframes btnGlow { 0%,100% { box-shadow: 0 0 20px rgba(45,212,168,0.3); } 50% { box-shadow: 0 0 40px rgba(45,212,168,0.6); } }
.btn-arrow { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(45,212,168,0.12); color: var(--teal-dark);
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { color: var(--gray-600); font-size: 1.1rem; line-height: 1.7; }

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== HERO SECTION — Photo Slideshow ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.5s ease;
  animation: kenBurns 20s ease-in-out infinite;
}
.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.12) translate(-1%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}
/* Stagger the animation start for each slide */
.hero-slide:nth-child(2) { animation-delay: -4s; }
.hero-slide:nth-child(3) { animation-delay: -8s; }
.hero-slide:nth-child(4) { animation-delay: -12s; }
.hero-slide:nth-child(5) { animation-delay: -16s; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,26,46,0.65) 0%, rgba(15,26,46,0.4) 40%, rgba(15,26,46,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 24px; }

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.hero-dot {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: var(--teal); border-color: var(--teal); transform: scale(1.2); }
.hero-dot:hover { border-color: var(--white); }

/* Hero animations */
.anim-hero { opacity: 0; transform: translateY(30px); animation: heroReveal 0.8s var(--ease) forwards; animation-delay: var(--d); }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.hero-logo-wrap { position: relative; display: block; margin: 0 auto 24px; width: fit-content; }
.hero-logo { width: 140px; height: 140px; object-fit: contain; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3)); }
.hero-logo-pulse {
  position: absolute; inset: -15px; border-radius: 50%;
  border: 2px solid rgba(45,212,168,0.4);
  animation: logoPulse 2.5s ease-in-out infinite;
}
@keyframes logoPulse { 0%,100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.15); opacity: 0; } }

.hero-title { font-family: var(--font-display); color: var(--white); font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.hero-title span { display: block; }
.hero-accent { color: var(--teal); }
.hero-sub { color: rgba(255,255,255,0.8); font-size: 1.2rem; max-width: 650px; margin: 0 auto 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; align-items: center; justify-content: center; gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--teal); }
.stat-suffix { font-family: var(--font-display); font-size: 2rem; color: var(--teal); }
.stat-label { display: block; color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 2; }
.hero-scroll span { display: block; color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-top: 8px; }
.scroll-mouse { width: 26px; height: 40px; border: 2px solid rgba(255,255,255,0.4); border-radius: 13px; margin: 0 auto; position: relative; }
.scroll-wheel { width: 4px; height: 8px; background: rgba(255,255,255,0.6); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s ease infinite; }
@keyframes scrollWheel { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 22px; } }

/* ========== MARQUEE ========== */
.marquee-strip { background: var(--navy); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; }
.marquee-content {
  display: flex; align-items: center; gap: 24px; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-content span { color: rgba(255,255,255,0.9); font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.mq-star { color: var(--gold) !important; font-size: 1.2rem !important; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== COUNTDOWN ========== */
.countdown-banner { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); padding: 24px 0; }
.countdown-wrap { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.countdown-text { text-align: center; }
.countdown-headline { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--navy); }
.countdown-sub { display: block; color: rgba(26,39,68,0.7); font-size: 0.9rem; }
.countdown-timer { display: flex; gap: 12px; }
.cd-unit { text-align: center; background: rgba(26,39,68,0.15); padding: 10px 16px; border-radius: var(--radius-sm); min-width: 64px; }
.cd-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--navy); }
.cd-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(26,39,68,0.6); font-weight: 700; }

/* ========== CAMP SCRAPBOOK GALLERY ========== */
.scrapbook-section { padding: 100px 0; position: relative; overflow: hidden; background: var(--cream); }
.scrapbook-bg-texture {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(249,199,79,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(45,212,168,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(244,132,95,0.05) 0%, transparent 50%);
  /* Cork board texture via subtle noise */
  background-color: #f5e6c8;
  opacity: 0.3;
}
.scrapbook-wall {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  padding: 40px 20px; max-width: 1400px; margin: 0 auto;
  perspective: 1200px;
}
.polaroid {
  background: var(--white); padding: 12px 12px 48px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  transition: all 0.5s var(--ease);
  position: relative; cursor: pointer;
  width: 220px; flex-shrink: 0;
}
.polaroid:hover {
  transform: scale(1.08) rotate(0deg) !important; z-index: 10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.polaroid-img { width: 100%; height: 200px; overflow: hidden; }
.polaroid-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.polaroid:hover .polaroid-img img { transform: scale(1.05); }
.polaroid-caption {
  font-family: var(--font-hand); font-size: 1.1rem; color: var(--navy);
  text-align: center; margin-top: 12px; font-weight: 700;
}

/* Tape effects */
.tape {
  position: absolute; width: 70px; height: 24px; top: -10px;
  background: rgba(249,199,79,0.55); border-radius: 2px;
  transform: rotate(-3deg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.tape-left { left: 10px; transform: rotate(-5deg); }
.tape-right { right: 10px; transform: rotate(4deg); }
.tape-center { left: 50%; transform: translateX(-50%) rotate(-2deg); }

/* Pushpin effect */
.pushpin {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #ff6b6b, #cc3333);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 2px rgba(255,255,255,0.3);
}
.pushpin::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

/* Polaroid rotations - each one tilted differently */
.polaroid-1 { transform: rotate(-3deg); }
.polaroid-2 { transform: rotate(2deg); }
.polaroid-3 { transform: rotate(-1.5deg); }
.polaroid-4 { transform: rotate(3.5deg); }
.polaroid-5 { transform: rotate(-2deg); width: 280px; }
.polaroid-5 .polaroid-img { height: 180px; }
.polaroid-6 { transform: rotate(1deg); }
.polaroid-7 { transform: rotate(-4deg); }
.polaroid-8 { transform: rotate(2.5deg); }
.polaroid-9 { transform: rotate(-1deg); }
.polaroid-10 { transform: rotate(3deg); }

.scrapbook-cta { text-align: center; margin-top: 48px; }

/* ========== AS SEEN ON TV ========== */
.seen-on-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0f1a2e 100%);
  color: var(--white);
}
.seen-on-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center;
}
.seen-on-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700; margin-bottom: 16px; line-height: 1.3;
}
.seen-on-text p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.seen-on-text .section-tag { background: rgba(45,212,168,0.2); color: var(--teal); }
.seen-on-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.media-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem;
}
.media-badge span { font-size: 1.2rem; }
.video-player {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.1);
}
.video-player video { width: 100%; display: block; }

/* ========== ABOUT ========== */
.about-section { background: var(--cream); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-cards { display: flex; flex-direction: column; gap: 24px; }
.about-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: all 0.3s var(--ease);
  border-left: 4px solid var(--teal);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-card-icon { font-size: 2rem; margin-bottom: 12px; }
.about-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.about-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

.about-visual { position: sticky; top: 100px; }
.founder-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 24px;
}
.founder-img { width: 100%; height: 360px; object-fit: cover; object-position: center 15%; }
.founder-info { padding: 20px; text-align: center; }
.founder-info h4 { font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; }
.founder-info p { color: var(--gray-600); font-size: 0.9rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-badge {
  background: var(--white); padding: 16px 12px; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.3s;
}
.trust-badge:hover { transform: translateY(-4px); }
.trust-icon { display: block; font-size: 1.5rem; margin-bottom: 6px; }
.trust-badge span:last-child { font-size: 0.75rem; font-weight: 700; color: var(--navy); }

.about-logo-watermark {
  position: absolute; right: -80px; bottom: -80px; opacity: 0.04;
  pointer-events: none; z-index: 0;
}
.watermark-img { width: 400px; }

/* ========== SOCIAL PROOF ========== */
.social-proof { background: var(--white); }
.proof-impact { text-align: center; margin-bottom: 60px; }
.impact-ring { position: relative; width: 220px; height: 220px; margin: 0 auto; }
.impact-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.impact-bg-circle { fill: none; stroke: var(--gray-200); stroke-width: 8; }
.impact-progress-circle {
  fill: none; stroke: var(--teal); stroke-width: 8;
  stroke-dasharray: 565.48; stroke-dashoffset: 565.48;
  stroke-linecap: round; transition: stroke-dashoffset 2s var(--ease);
}
.impact-ring.animated .impact-progress-circle { stroke-dashoffset: 16.96; }
.impact-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.impact-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.impact-pct { font-family: var(--font-display); font-size: 2rem; color: var(--teal); }
.impact-txt { font-size: 0.8rem; color: var(--gray-600); line-height: 1.4; margin-top: 4px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
.testimonial-card {
  background: var(--gray-100); padding: 28px; border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease); position: relative;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.t-kid { border-top: 3px solid var(--sky); }
.t-parent { border-top: 3px solid var(--sunset); }
.t-featured { background: var(--navy); color: var(--white); border-top-color: var(--teal); }
.t-featured .t-quote { color: rgba(255,255,255,0.9); }
.t-quote { font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; color: var(--gray-800); }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { font-size: 2rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: 50%; }
.t-featured .t-avatar { background: rgba(255,255,255,0.1); }
.t-author strong { display: block; font-size: 0.9rem; }
.t-author span { display: block; font-size: 0.8rem; color: var(--gray-600); }
.t-featured .t-author span { color: rgba(255,255,255,0.6); }

.word-cloud { text-align: center; margin-bottom: 60px; padding: 40px; background: var(--gray-100); border-radius: var(--radius-xl); }
.word-cloud h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 24px; font-size: 1.1rem; }
.cloud-words { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 24px; }
.cloud-words span {
  font-family: var(--font-display); font-size: var(--s); color: var(--c);
  font-weight: 700; transition: transform 0.3s; cursor: default;
}
.cloud-words span:hover { transform: scale(1.15) rotate(-3deg); }
.proof-cta { text-align: center; }

/* ========== WHY CAMP ========== */
.why-camp { position: relative; color: var(--white); }
.why-camp-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-attachment: fixed;
}
.why-camp-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.92), rgba(26,39,68,0.88));
}
.why-camp .container { position: relative; z-index: 2; }
.why-camp .section-tag { background: rgba(45,212,168,0.2); color: var(--teal); }
.why-camp .section-title { color: var(--white); }
.why-camp .section-sub { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); padding: 36px;
  border-radius: var(--radius-lg); transition: all 0.3s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); border-color: var(--teal); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; }

/* ========== ADVENTURE PASSPORT ========== */
.passport-section { background: var(--white); }
.passport-book {
  background: linear-gradient(135deg, #2a3f6a 0%, #1a2744 100%);
  border-radius: var(--radius-xl); padding: 48px; position: relative;
  box-shadow: 0 20px 60px rgba(26,39,68,0.3);
  overflow: hidden;
}
.passport-book::before {
  content: 'CAMP OSPREY ADVENTURE PASSPORT';
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 0.85rem;
  color: rgba(255,255,255,0.2); letter-spacing: 4px; white-space: nowrap;
}
.passport-page {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stamp {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(2.5) rotate(-25deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stamp.stamped {
  opacity: 1; transform: scale(1) rotate(0deg);
}
.stamp-inner {
  width: 100%; height: 100%; border-radius: 50%;
  border: 3px dashed rgba(255,255,255,0.4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 12px; text-align: center; position: relative;
  background: rgba(255,255,255,0.06);
}
.stamp.stamped .stamp-inner {
  border-color: var(--teal);
  background: rgba(45,212,168,0.1);
  box-shadow: 0 0 20px rgba(45,212,168,0.15);
}
.stamp-icon { font-size: 2rem; margin-bottom: 4px; }
.stamp-label {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px;
}
.stamp.stamped .stamp-label { color: var(--teal); }

/* ========== ACTIVITIES ========== */
.activities-section { background: var(--cream); }
.activity-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px; border: 2px solid var(--gray-300);
  background: var(--white); font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; color: var(--gray-600); cursor: pointer; transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--navy); }
.activity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 40px; }
.act-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease);
}
.act-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lg); }
.act-card.hidden { display: none; }

.act-inner { padding: 28px; }
.act-emoji { font-size: 2.5rem; margin-bottom: 12px; }
.act-inner h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.act-inner p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.act-level { font-size: 0.8rem; color: var(--gray-600); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); }
.dot.on { background: var(--teal); }
.activities-cta { text-align: center; }

/* ========== EXCURSIONS ========== */
.excursions-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 60px 0; text-align: center;
}
.excursions-wrap h2 { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-bottom: 8px; }
.excursions-wrap > p { color: rgba(26,39,68,0.7); margin-bottom: 24px; }
.excursion-chips { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.excursion-chip {
  background: rgba(255,255,255,0.5); padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; color: var(--navy);
  display: flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.excursion-chip:hover { background: var(--white); transform: translateY(-3px); }
.excursion-price { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1.1rem; }

/* ========== CAMPUS ========== */
.campus-section { background: var(--white); }
.campus-photo-banner {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 48px; max-height: 400px;
}
.campus-photo-banner img { width: 100%; height: 400px; object-fit: cover; }
.campus-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 20px; gap: 12px;
  background: linear-gradient(transparent, rgba(26,39,68,0.6));
  color: var(--white); font-weight: 700;
}

/* Drone video banner */
.campus-video-banner {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 48px; height: 420px;
}
.campus-video-banner video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
  z-index: 0;
}
.campus-video-banner video.active { opacity: 1; z-index: 1; }
.campus-video-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; gap: 12px; z-index: 2;
  background: linear-gradient(transparent, rgba(26,39,68,0.7));
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.campus-logo-float { width: 36px; opacity: 0.85; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }
.campus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.campus-card {
  background: var(--gray-100); padding: 28px 20px; border-radius: var(--radius-lg);
  text-align: center; transition: all 0.3s var(--ease);
}
.campus-card:hover { background: var(--white); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.campus-card .cc-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.campus-card h3 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.campus-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ========== LIFE AT CAMP ========== */
.life-section { background: var(--cream); }
.timeline { max-width: 700px; margin: 0 auto 60px; position: relative; padding-left: 100px; }
.timeline::before {
  content: ''; position: absolute; left: 88px; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(var(--teal), var(--sky), var(--sunset));
  border-radius: 3px;
}
.tl-item { position: relative; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 24px; }
.tl-time { position: absolute; left: -100px; width: 80px; text-align: right; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--navy); padding-top: 4px; }
.tl-dot {
  position: absolute; left: -12px; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--teal); border: 3px solid var(--cream);
  z-index: 1; flex-shrink: 0;
}
.tl-content { padding-left: 20px; }
.tl-emoji { font-size: 1.4rem; margin-right: 8px; }
.tl-content h4 { display: inline; font-family: var(--font-display); font-size: 1rem; color: var(--navy); }
.tl-content p { color: var(--gray-600); font-size: 0.9rem; margin-top: 4px; }

.life-extras { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.extra-card {
  background: var(--white); padding: 24px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform 0.3s;
}
.extra-card:hover { transform: translateY(-4px); }
.extra-card h4 { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.extra-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* ========== TUITION ========== */
.tuition-section { background: var(--white); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; align-items: start; }
.price-card {
  background: var(--gray-100); border-radius: var(--radius-xl); padding: 40px 32px;
  text-align: center; transition: all 0.3s var(--ease); position: relative; border: 2px solid transparent;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-featured {
  background: var(--navy); color: var(--white); border-color: var(--teal);
  transform: scale(1.05); z-index: 1;
}
.price-featured:hover { transform: scale(1.05) translateY(-8px); }
.price-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); padding: 6px 24px; border-radius: 50px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; white-space: nowrap;
}
.price-badge { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.price-featured .price-badge { color: var(--white); }
.price-amount { margin-bottom: 4px; }
.price-dollar { font-family: var(--font-display); font-size: 1.5rem; vertical-align: top; }
.price-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; }
.price-per { font-size: 1rem; color: var(--gray-600); }
.price-featured .price-per { color: rgba(255,255,255,0.6); }
.price-daily { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 24px; }
.price-featured .price-daily { color: rgba(255,255,255,0.6); }
.price-features { margin-bottom: 28px; text-align: left; }
.price-features li {
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem; position: relative; padding-left: 24px;
}
.price-featured .price-features li { border-bottom-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.price-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.session-dates { text-align: center; }
.session-dates h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.session-note { color: var(--gray-600); margin-bottom: 24px; }
.dates-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.date-card {
  background: var(--gray-100); padding: 20px 16px; border-radius: var(--radius-md);
  text-align: center; transition: all 0.3s;
}
.date-card:hover { background: var(--white); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.date-month { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 1px; }
.date-range { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin: 4px 0; }
.date-status { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; }
.date-status.available { background: rgba(45,212,168,0.15); color: var(--teal-dark); }
.date-status.filling { background: rgba(244,132,95,0.15); color: var(--sunset-dark); animation: fillPulse 2s ease infinite; }
@keyframes fillPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ========== FIRST TIMER ========== */
.first-timer-section { position: relative; color: var(--white); padding: 100px 0; }
.first-timer-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.first-timer-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.92), rgba(42,63,106,0.88));
}
.first-timer-section .container { position: relative; z-index: 2; }
.ft-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.ft-text .section-tag { background: rgba(45,212,168,0.2); color: var(--teal); }
.ft-text h2 { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 16px; line-height: 1.3; }
.ft-text > p { color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.7; }
.ft-checklist { margin-bottom: 32px; }
.ft-check { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 0.95rem; }
.ft-check span:first-child {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(45,212,168,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-weight: 700; flex-shrink: 0;
}
.confidence-meter { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); padding: 32px; border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.1); }
.meter-title { font-family: var(--font-display); font-weight: 700; text-align: center; margin-bottom: 20px; font-size: 1.1rem; }
.meter-track { height: 24px; background: rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; margin-bottom: 12px; position: relative; }
.meter-fill {
  height: 100%; width: 15%; border-radius: 12px;
  background: linear-gradient(90deg, var(--sunset), var(--gold), var(--teal));
  transition: width 2s var(--ease);
}
.meter-fill.animated { width: 100%; }
.meter-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ========== CONTACT ========== */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  background: var(--white); padding: 24px; border-radius: var(--radius-lg);
  text-align: center; transition: all 0.3s var(--ease); display: block;
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .cc-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.contact-card h4 { font-family: var(--font-display); color: var(--navy); margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--gray-800); font-weight: 600; }
.contact-card small { font-size: 0.8rem; color: var(--gray-600); }
.contact-form-wrap { background: var(--white); padding: 36px; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.3s; background: var(--gray-100);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); background: var(--white); }

/* ========== FINAL CTA ========== */
.final-cta { position: relative; padding: 120px 0; text-align: center; color: var(--white); overflow: hidden; }
.final-cta-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.final-cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.9), rgba(26,39,68,0.85));
}
.final-cta .container { position: relative; z-index: 2; }
.final-cta-content { max-width: 700px; margin: 0 auto; }
.final-logo { width: 120px; margin: 0 auto 24px; filter: drop-shadow(0 4px 15px rgba(0,0,0,0.3)); }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; line-height: 1.3; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 32px; }
.final-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { width: 48px; height: 48px; object-fit: contain; }
.fl-camp { display: block; font-family: var(--font-display); font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 700; letter-spacing: 2px; }
.fl-osprey { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--white); font-weight: 700; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-display); color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-links a { display: block; padding: 4px 0; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.footer-rating { color: var(--gold); font-weight: 700; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { position: static; }
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .t-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .seen-on-wrap { grid-template-columns: 1fr; }
  .passport-page { grid-template-columns: repeat(3, 1fr); }
  .polaroid { width: 190px; }
  .polaroid-img { height: 170px; }
  .polaroid-5 { width: 240px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--navy); flex-direction: column; padding: 80px 24px 24px;
    transition: right 0.4s var(--ease); gap: 8px; z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-toggle { display: block; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-title { font-size: 2.5rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .countdown-wrap { flex-direction: column; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-featured { grid-column: span 1; }
  .pricing-cards { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-8px); }
  .dates-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-content { grid-template-columns: 1fr; }
  .life-extras { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .campus-grid { grid-template-columns: 1fr; }
  .seen-on-wrap { grid-template-columns: 1fr; gap: 30px; }
  .passport-page { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .passport-book { padding: 32px 20px; }
  .polaroid { width: 160px; }
  .polaroid-img { height: 140px; }
  .polaroid-5 { width: 200px; }
  .scrapbook-wall { gap: 12px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dates-grid { grid-template-columns: 1fr; }
  .life-extras { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo { width: 100px; height: 100px; }
  .passport-page { grid-template-columns: repeat(2, 1fr); }
  .polaroid { width: 140px; }
  .polaroid-img { height: 120px; }
  .polaroid-5 { width: 160px; }
  .polaroid-caption { font-size: 0.9rem; }
  .stamp-icon { font-size: 1.5rem; }
}
