/* ═══════════════════════════════════════════════════════
   CAMP CHEVRA — Master Stylesheet v5
   Complete Visual Overhaul
   Fonts: Boogaloo (hero) + Fredoka One (headings) + Nunito (body)
   WHITE ocean waves, animated gradient text, flip cards,
   hero parallax, marquee, floating particles, premium effects
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Boogaloo&family=Fredoka+One&family=Nunito:wght@500;700&display=swap');

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

:root {
  --navy:        #061529;
  --navy-light:  #12233d;
  --blue-deep:   #0a2a5e;
  --blue-mid:    #1a4fa8;
  --blue-bright: #1976d2;
  --blue-sky:    #2196f3;
  --blue-light:  #42a5f5;
  --blue:        #1a3a6b;
  --blue-royal:  #1a4fa8;
  --blue-dark:   #0f1e38;
  --sky-accent:  #7ec8e3;
  --gold:        #f0b429;
  --gold-light:  #ffd166;
  --gold-dark:   #b08d2f;
  --white:       #ffffff;
  --cream:       #f0e6c8;
  --font-display: 'Boogaloo', cursive;
  --font-heading: 'Fredoka One', cursive;
  --font-body:    'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--cream);
  background: var(--navy);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul, ol { list-style: none; }
button, input, textarea { transition: all 0.3s ease; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--sky-accent);
}

h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--sky-accent);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1.2rem; font-weight: 400; }

p { margin-bottom: 1rem; color: var(--cream); }

.gold { color: var(--gold); font-weight: 700; }
b.gold { color: var(--gold); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title { margin-bottom: 16px; color: var(--sky-accent); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Animated Gradient Text ── */
.gradient-heading {
  background: linear-gradient(135deg, #7ec8e3, #ffffff, #c9a84c, #7ec8e3);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.5);
}
.btn-gold:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

/* Button Water Ripple Effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}
.btn-ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%),
              rgba(255,255,255,0.35) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-ripple:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════
   NAVBAR — No logo, just links + CTA
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  height: 64px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(201, 168, 76, 0.4);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-inner-nologo {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.navbar-logo img {
  height: 75px;
  width: auto;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 4px 8px;
  transition: height 0.4s ease;
}

.navbar.scrolled .navbar-logo img {
  height: 50px;
}

.navbar-logo span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

.navbar-cta {
  padding: 10px 24px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  border-radius: 25px;
  animation: ctaPulse 4s ease-in-out infinite;
}

.navbar-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
}

@keyframes ctaPulse {
  0%, 85%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
  90% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.3); }
  95% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 83px;
  left: 0; right: 0; bottom: 0;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }

/* ═══════════════════════════════════════
   HERO — Logo at top, Ken Burns bg, parallax
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://static.wixstatic.com/media/1c7b7e_74afafe2b5a74bd680feee0030841485~mv2.jpg/v1/fill/w_1905,h_1260,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/1c7b7e_74afafe2b5a74bd680feee0030841485~mv2.jpg');
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 21, 41, 0.18);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 24px;
  padding-top: 80px;
}

/* Hero logo — positioned at top */
.hero-logo {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
  will-change: transform;
}

/* Hero h1 — Boogaloo display font */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: 3px;
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--sky-accent);
  margin-bottom: 8px;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-note {
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 36px;
  font-style: italic;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Click Ripple */
.hero-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(126, 200, 227, 0.25);
  transform: scale(0);
  animation: rippleExpand 0.8s ease-out forwards;
  pointer-events: none;
  z-index: 2;
}

@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════
   ANGLED SECTION TRANSITIONS
   ═══════════════════════════════════════ */
.angled-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  padding-bottom: 80px;
}

.angled-top {
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  padding-top: 80px;
}

/* ═══════════════════════════════════════
   STAT ICONS (emoji above numbers)
   ═══════════════════════════════════════ */
.stat-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════
   WATER SHIMMER BACKGROUNDS
   ═══════════════════════════════════════ */
@keyframes waterShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ═══════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, #1a6fd4, #2080e0, #1a6fd4);
  background-size: 200% 200%;
  animation: waterShimmer 10s ease infinite;
  padding: 48px 24px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  position: relative;
}

/* Gold line separators between stats */
.stat-item:not(:last-child) {
  border-right: 1px solid rgba(201, 168, 76, 0.3);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 700;
  margin: 0;
}

/* ═══════════════════════════════════════
   SECTIONS — Water Shimmer
   ═══════════════════════════════════════ */
section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-navy {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,125,210,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,79,168,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0d4a8a, #1158a0, #0d4a8a);
  background-size: auto, auto, 200% 200%;
  animation: waterShimmer 10s ease infinite;
}

.section-light {
  background:
    radial-gradient(ellipse at 70% 60%, rgba(45,125,210,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 30%, rgba(26,79,168,0.08) 0%, transparent 55%),
    linear-gradient(135deg, #1565b8, #1870c8, #1565b8);
  background-size: auto, auto, 200% 200%;
  animation: waterShimmer 10s ease infinite;
}

.section-royal {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(126,200,227,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 70%, rgba(45,125,210,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #1a6fd4, #2080e0, #1a6fd4);
  background-size: auto, auto, 200% 200%;
  animation: waterShimmer 10s ease infinite;
}

.section-sky {
  background:
    radial-gradient(ellipse at 25% 70%, rgba(126,200,227,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(26,79,168,0.1) 0%, transparent 55%),
    linear-gradient(135deg, #1a82c4, #2090d4, #1a82c4);
  background-size: auto, auto, 200% 200%;
  animation: waterShimmer 10s ease infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy anim classes */
.anim,
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.visible,
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children — using --i CSS variable */
.stagger-children > * {
  transition-delay: calc(0.1s * var(--i, 0));
}

/* Fallback stagger for elements without --i */
.stagger-children > *:nth-child(1)  { --i: 0; }
.stagger-children > *:nth-child(2)  { --i: 1; }
.stagger-children > *:nth-child(3)  { --i: 2; }
.stagger-children > *:nth-child(4)  { --i: 3; }
.stagger-children > *:nth-child(5)  { --i: 4; }
.stagger-children > *:nth-child(6)  { --i: 5; }
.stagger-children > *:nth-child(7)  { --i: 6; }
.stagger-children > *:nth-child(8)  { --i: 7; }
.stagger-children > *:nth-child(9)  { --i: 8; }
.stagger-children > *:nth-child(10) { --i: 9; }

/* About page slide directions */
.anim-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-left.visible,
.anim-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════
   WHY CHEVRA
   ═══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.why-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.why-card h3 { margin-bottom: 12px; color: var(--sky-accent); }
.why-card p { font-size: 0.95rem; color: var(--cream); line-height: 1.7; }

/* ═══════════════════════════════════════
   ACTIVITIES — Flip Cards
   ═══════════════════════════════════════ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.flip-card {
  perspective: 1000px;
  min-height: 320px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  text-align: center;
}

.flip-card-front {
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.flip-card-front .activity-banner-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.flip-card-front h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--font-heading);
}

.flip-card-back {
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
}

.flip-card-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.85) 60%);
  border-radius: 16px;
}

.flip-card-back-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 60px;
}

.flip-card-back-content h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.flip-card-back-content p {
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════
   TESTIMONIALS — Gold left border cards
   ═══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(18, 35, 61, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
  opacity: 0.2;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--sky-accent);
}

/* ═══════════════════════════════════════
   TRIPS MARQUEE — Auto-scrolling ticker
   ═══════════════════════════════════════ */
.trips-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.trips-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0d4a8a 0%, #1565b8 50%, #0d4a8a 100%);
  background-size: 200% 200%;
  animation: waterShimmer 10s ease infinite;
}

.trips-banner-content {
  position: relative;
  z-index: 1;
}

.trips-banner h2 { margin-bottom: 32px; }

/* Marquee auto-scroll */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trip-tag {
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.trip-tag:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

/* Static trip tags fallback */
.trip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, #1a6fd4, #2080e0, #1a6fd4);
  background-size: 200% 200%;
  animation: waterShimmer 10s ease infinite;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  text-align: center;
  padding: 150px 24px 80px;
}

.page-hero .section-label { color: var(--gold); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.05rem;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   ABOUT PAGE — Staff (Grayscale to Color + Gold Glow)
   ═══════════════════════════════════════ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.staff-card {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(201, 168, 76, 0.2), 0 8px 32px rgba(0,0,0,0.3);
  border-color: var(--gold);
}

.staff-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.staff-card:hover .staff-photo {
  transform: scale(1.03);
}

.staff-info { padding: 28px 24px; }

.staff-info h3 {
  margin-bottom: 4px;
  font-size: 1.3rem;
}

.staff-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky-accent);
  margin-bottom: 12px;
}

.staff-info p:last-child {
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.7;
}

/* About content sections */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}

.about-section:nth-child(even) .about-image { order: -1; }

.about-text h2 { margin-bottom: 16px; }

.about-text p {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* Location */
.location-section { text-align: center; }
.location-section h2 { margin-bottom: 8px; }
.location-section p { color: var(--cream); font-size: 1.05rem; }

.location-image {
  max-width: 600px;
  margin: 32px auto 0;
  border-radius: 12px;
  overflow: hidden;
}
.location-image img { width: 100%; }

/* ═══════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0);
  transition: background 0.3s;
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(10,22,40,0.15); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  margin: auto;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Videos */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--navy-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.2);
}

.video-card h3 { padding: 16px 20px; font-size: 1rem; }
.video-card video { width: 100%; display: block; }

/* ═══════════════════════════════════════
   REGISTRATION PAGE
   ═══════════════════════════════════════ */
.reg-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.reg-step {
  text-align: center;
  padding: 24px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}

.reg-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.reg-step-num {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.reg-step h4 { margin-bottom: 8px; }
.reg-step p { font-size: 0.88rem; color: var(--cream); margin: 0; }

.reg-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.reg-form-container h3 { margin-bottom: 16px; }
.reg-form-container p { color: var(--cream); margin-bottom: 24px; }

.reg-form-container p a {
  color: var(--sky-accent);
  transition: color 0.3s;
}
.reg-form-container p a:hover { color: var(--white); }

.reg-placeholder {
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(126, 200, 227, 0.3);
  border-radius: 12px;
  padding: 60px 40px;
  margin: 24px 0;
}

.reg-placeholder h3 { font-size: 1.6rem; margin-bottom: 16px; }
.reg-placeholder p { font-size: 1.1rem; color: var(--cream); }
.reg-placeholder a { color: var(--sky-accent); font-weight: 700; }

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-item h4 { margin-bottom: 2px; }
.contact-item p { font-size: 0.92rem; color: var(--cream); margin: 0; }

.contact-item a { color: var(--sky-accent); transition: color 0.3s; }
.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-form h3 { margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-accent);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(126, 200, 227, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ═══════════════════════════════════════
   FOOTER — Premium with ocean divider
   ═══════════════════════════════════════ */
.footer {
  background: #060e1a;
  color: var(--cream);
  padding: 64px 24px 48px;
  text-align: center;
  position: relative;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sky-accent);
  transition: all 0.3s;
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.footer p { font-size: 0.85rem; margin: 0; color: rgba(240,230,200,0.6); }

/* ═══════════════════════════════════════
   BACK TO TOP BUTTON
   ═══════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* Button click ripple */
.btn-click-ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: scale(0);
  animation: btnRippleExpand 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes btnRippleExpand {
  to {
    transform: scale(25);
    opacity: 0;
  }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  body { transition: none; opacity: 1; }
  .marquee-track { animation: none !important; flex-wrap: wrap; justify-content: center; }
  .hero-bg { animation: none !important; }
  .gradient-heading { animation: none !important; }
  .stats-strip,
  .section-navy,
  .section-light,
  .section-royal,
  .section-sky,
  .cta-section,
  .trips-banner-bg { animation: none !important; }
  .reveal,
  .anim,
  .anim-left,
  .anim-right,
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 992px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-item:not(:last-child) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(201, 168, 76, 0.3); }

  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .activities-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .staff-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .about-section { grid-template-columns: 1fr; gap: 32px; }
  .about-section:nth-child(even) .about-image { order: 0; }
  .reg-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  .lightbox { padding: 40px 60px; }

  /* Flip cards: disable hover, use tap */
  .flip-card:hover .flip-card-inner {
    transform: none;
  }
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .container { padding: 0 16px; }

  .navbar { height: 70px; }
  .navbar-logo img { height: 55px; }
  .navbar-logo span { font-size: 1.3rem; }
  .mobile-menu { top: 73px; }

  .hero-logo { width: 140px; top: 14%; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 12px 28px; width: 100%; max-width: 280px; text-align: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item h3 { font-size: 1.4rem; }

  .flip-card { min-height: 260px; }
  .flip-card-inner { min-height: 260px; }
  .flip-card-front h3 { font-size: 1.4rem; }
  .flip-card-front .activity-banner-icon { font-size: 3rem; }

  .reg-steps { grid-template-columns: 1fr; }
  .reg-form-container { padding: 24px 16px; }

  .form-row { grid-template-columns: 1fr; }

  .trip-tag { padding: 10px 20px; font-size: 0.75rem; }

  .lightbox { padding: 20px 10px; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }

  .videos-grid { grid-template-columns: 1fr; }

  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 1.1rem; }
}
