/* =============================================
   MC KEVIN THE HOST — MAIN STYLESHEET
   styles.css
   Dark / Neon / High-Energy Brand Website
============================================= */

/* ── CSS VARIABLES ── */
:root {
  --black:         #080810;
  --dark:          #0d0d1a;
  --dark-mid:      #111124;
  --dark-surface:  #161630;
  --card-bg:       #12122a;

  --neon:          #00f0ff;
  --neon-glow:     rgba(0, 240, 255, 0.35);
  --neon-dim:      rgba(0, 240, 255, 0.15);
  --purple:        #8b5cf6;
  --purple-glow:   rgba(139, 92, 246, 0.4);
  --accent:        #ff2d6e;
  --accent-glow:   rgba(255, 45, 110, 0.4);
  --green-wa:      #25d366;

  --white:         #ffffff;
  --off-white:     #e8e8f0;
  --muted:         #6b6b8a;
  --border:        rgba(255, 255, 255, 0.07);

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Poppins', sans-serif;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-snappy:   cubic-bezier(0.4, 0, 0.2, 1);

  --header-h:      72px;
  --radius-sm:     6px;
  --radius:        12px;
  --radius-lg:     20px;
}

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

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

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

body.no-scroll {
  overflow: hidden;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea { font-family: var(--font-body); }

.hidden { display: none !important; }

/* ── SELECTION ── */
::selection {
  background: var(--neon);
  color: var(--black);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--neon); border-radius: 2px; }


/* =============================================
   INTRO OVERLAY
============================================= */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Grid overlay */
.intro-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* Noise overlay */
.intro-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* Corner accents */
.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--neon);
  border-style: solid;
  opacity: 0.5;
  animation: cornerPulse 2s ease-in-out infinite alternate;
}
.corner--tl { top: 24px; left: 24px;  border-width: 2px 0 0 2px; }
.corner--tr { top: 24px; right: 24px; border-width: 2px 2px 0 0; }
.corner--bl { bottom: 24px; left: 24px;  border-width: 0 0 2px 2px; }
.corner--br { bottom: 24px; right: 24px; border-width: 0 2px 2px 0; }

@keyframes cornerPulse {
  to { opacity: 1; box-shadow: 0 0 12px var(--neon-glow); }
}

/* Intro content */
.intro-content {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.intro-line {
  overflow: hidden;
  margin-bottom: 12px;
}

.intro-word {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  margin: 0 12px;
}

.intro-word.accent { color: var(--neon); }
.intro-word.neon {
  color: transparent;
  -webkit-text-stroke: 2px var(--neon);
  text-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(0,240,255,0.2);
}

.intro-word.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-word:nth-child(2) {
  transition-delay: 0.15s;
}

/* Enter button */
.enter-btn {
  position: relative;
  margin-top: 48px;
  padding: 18px 48px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--neon);
  border-radius: 60px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.enter-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.enter-btn:hover {
  background: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px var(--neon-glow);
}

.enter-btn__arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.enter-btn:hover .enter-btn__arrow { transform: translateX(4px); }

.enter-btn__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.enter-btn:hover .enter-btn__glow { opacity: 1; }


/* =============================================
   MAIN SITE
============================================= */
.main-site {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out-expo);
}

.main-site.visible {
  opacity: 1;
}


/* =============================================
   HEADER / NAV
============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo__mc {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 20px var(--neon-glow);
}

.logo__name {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1.2;
}

.logo__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -8px;
  box-shadow: 0 0 8px var(--accent-glow);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.7; }
}

/* Nav */
.main-nav { display: flex; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-link--cta {
  background: var(--neon);
  color: var(--black);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 40px;
  box-shadow: 0 0 20px var(--neon-glow);
}
.nav-link--cta:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--neon); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--neon); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(8,8,16,0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.35s, visibility 0.35s;
  padding: 20px 24px 28px;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav-link:hover { color: var(--neon); background: rgba(0,240,255,0.06); }

.mobile-nav-link--cta {
  margin-top: 12px;
  background: var(--neon);
  color: var(--black);
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
}
.mobile-nav-link--cta:hover { background: var(--white); color: var(--black); }


/* =============================================
   SECTION UTILS
============================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--neon);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}

.highlight {
  color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow);
}

/* Shared animation classes */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* =============================================
   VIDEO SECTION
============================================= */
.video-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Placeholder animated background */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 60% at 30% 40%, rgba(0,240,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 75% 65%, rgba(139,92,246,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255,45,110,0.06) 0%, transparent 70%),
    var(--black);
  overflow: hidden;
}

.vp-scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 240, 255, 0.01) 3px,
    rgba(0, 240, 255, 0.01) 4px
  );
  pointer-events: none;
}

/* Floating particles */
.vp-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
}

/* Overlay darkening gradient */
.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8,8,16,0.4) 0%, transparent 30%, transparent 60%, var(--black) 100%);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px 120px;
  max-width: 900px;
}

.video-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.label-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
  animation: dotPulse 2s ease-in-out infinite;
}

.video-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 11rem);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 0.85;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vh-line {
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.vh-sub {
  font-size: clamp(1.6rem, 5vw, 4rem);
  color: var(--neon);
  text-shadow: 0 0 40px var(--neon-glow), 0 0 80px rgba(0,240,255,0.2);
  letter-spacing: 0.3em;
  margin-top: 8px;
  -webkit-text-stroke: 0;
}

.video-tagline {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: var(--muted);
  letter-spacing: 0.08em;
  margin: 24px 0 40px;
  min-height: 1.6em;
}

/* Play button */
.play-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 32px 16px 20px;
  background: rgba(0,240,255,0.1);
  border: 1px solid rgba(0,240,255,0.3);
  border-radius: 60px;
  color: var(--neon);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  margin-bottom: 64px;
}

.play-btn:hover {
  background: rgba(0,240,255,0.18);
  border-color: var(--neon);
  transform: scale(1.04);
  box-shadow: 0 0 30px var(--neon-glow);
}

.play-btn__icon {
  width: 42px;
  height: 42px;
  background: var(--neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.play-btn__icon svg { width: 16px; height: 16px; margin-left: 2px; }
.play-btn:hover .play-btn__icon { transform: scale(1.1); }

.play-btn__ring {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--neon);
  border-radius: 60px;
  opacity: 0;
  transform: scale(1);
  animation: ringPulse 2.5s ease-out infinite;
}
.play-btn__ring--2 { animation-delay: 1.25s; }

@keyframes ringPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.25); }
}

/* Stats row */
.video-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px 0;
}

.stat {
  text-align: center;
  padding: 0 32px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 20px var(--neon-glow);
}

.stat__plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--neon);
}

.stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollHintBounce 2s ease-in-out infinite;
}

.scroll-hint__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 1; }
}


/* =============================================
   EVENTS SECTION
============================================= */
.events-section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.event-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, box-shadow 0.4s;
  cursor: pointer;
  outline: none;
}

.event-card:hover,
.event-card:focus-visible {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Color blob background per card */
.event-card__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  border-radius: inherit;
}

.event-card__color {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  top: -40px;
  right: -40px;
  opacity: 0;
  transition: opacity 0.5s;
}

.ec-wed   { background: #ff6b9e; }
.ec-corp  { background: var(--neon); }
.ec-party { background: var(--purple); }
.ec-club  { background: var(--accent); }

.event-card:hover .event-card__color,
.event-card:focus-visible .event-card__color { opacity: 0.15; }

.event-card:hover         { border-color: rgba(0,240,255,0.3); }
.event-card[data-event="weddings"]:hover   { border-color: rgba(255,107,158,0.4); }
.event-card[data-event="parties"]:hover    { border-color: rgba(139,92,246,0.4); }
.event-card[data-event="club"]:hover       { border-color: rgba(255,45,110,0.4); }

/* Badge */
.event-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Featured card */
.event-card--featured {
  border-color: rgba(0,240,255,0.2);
  background: linear-gradient(135deg, #12122a 0%, #0d1a2a 100%);
}

/* Card content — above blob */
.event-card > *:not(.event-card__bg) { position: relative; z-index: 1; }

.event-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s var(--ease-out-expo);
}
.event-card:hover .event-card__icon { transform: scale(1.15) rotate(-4deg); }

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}

.event-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.event-card__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.event-card__features li {
  font-size: 0.8rem;
  color: var(--off-white);
  padding-left: 16px;
  position: relative;
}

.event-card__features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-size: 0.7rem;
}

.event-card__cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--neon);
  transition: letter-spacing 0.3s, opacity 0.3s;
  opacity: 0.7;
}
.event-card:hover .event-card__cta { opacity: 1; letter-spacing: 0.1em; }


/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-strip {
  width: 100%;
  overflow: hidden;
  background: var(--neon);
  padding: 14px 0;
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
}
.marquee-strip::before { left: 0;  background: linear-gradient(to right, var(--neon), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, var(--neon), transparent); }

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

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

.marquee-item {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
  padding: 0 8px;
}

.marquee-sep {
  color: rgba(0,0,0,0.4);
  padding: 0 16px;
}

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


/* =============================================
   WHY SECTION
============================================= */
.why-section {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 12px 0 20px;
}

.why-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
  font-style: italic;
}

/* Statements */
.why-statement {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.why-statement.in-view {
  opacity: 1;
  transform: translateX(0);
}

.why-statement:nth-child(2) { transition-delay: 0.1s; }
.why-statement:nth-child(3) { transition-delay: 0.2s; }
.why-statement:nth-child(4) { transition-delay: 0.3s; }

.why-statement:first-child { border-top: 1px solid var(--border); }

.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(0,240,255,0.15);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s;
}

.why-statement:hover .why-num {
  color: var(--neon);
}

.why-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* BG text */
.why-bg-text {
  position: absolute;
  bottom: -20px;
  left: -20px;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,240,255,0.04);
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}


/* =============================================
   GALLERY SECTION
============================================= */
.gallery-section {
  padding: 100px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item.gi--tall { grid-row: span 2; }
.gallery-item.gi--wide { grid-column: span 2; }

.gallery-ph {
  width: 100%;
  height: 100%;
  min-height: 220px;
  position: relative;
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-ph { transform: scale(1.03); }

/* Placeholder gradient patterns */
.gph--1 { background: linear-gradient(135deg, #1a0a1e 0%, #3d1060 50%, #7c2d9c 100%); min-height: 460px; }
.gph--2 { background: linear-gradient(135deg, #001a2e 0%, #003d5c 50%, #006b9e 100%); }
.gph--3 { background: linear-gradient(135deg, #1a0010 0%, #5c001e 50%, #8b1a3a 100%); }
.gph--4 { background: linear-gradient(135deg, #0a1500 0%, #1e3a00 50%, #3d7000 100%); min-height: 220px; }
.gph--5 { background: linear-gradient(135deg, #1a1000 0%, #4a2e00 50%, #7a4800 100%); }
.gph--6 { background: linear-gradient(135deg, #00101a 0%, #003040 50%, #006070 100%); min-height: 460px; }

/* Fake content overlays for placeholders */
.gallery-ph::before {
  content: '📸';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  opacity: 0.2;
  z-index: 0;
  transition: opacity 0.3s;
}

.gph--1::before { content: '💍'; }
.gph--2::before { content: '🏆'; }
.gph--3::before { content: '🎙️'; }
.gph--4::before { content: '🎉'; }
.gph--5::before { content: '🔥'; }
.gph--6::before { content: '✨'; }

/* Hover overlay */
.gph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 1;
}

.gallery-item:hover .gph-overlay { opacity: 1; }

.gph-overlay__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neon);
  text-shadow: 0 0 10px var(--neon-glow);
}


/* =============================================
   BOOKING SECTION
============================================= */
.booking-section {
  position: relative;
  padding: 100px 24px 120px;
  overflow: hidden;
}

/* Animated circles */
.booking-bg-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.booking-circle {
  position: absolute;
  border-radius: 50%;
  animation: circleFloat 8s ease-in-out infinite alternate;
}

.bc--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,240,255,0.08) 0%, transparent 70%);
  top: -200px; left: -100px;
}
.bc--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -3s;
}
.bc--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,45,110,0.06) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation-delay: -6s;
}

@keyframes circleFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -20px) scale(1.05); }
}

.booking-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.booking-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 12px 0 20px;
}

.booking-headline--accent {
  color: var(--neon);
  text-shadow: 0 0 40px var(--neon-glow);
}

.booking-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 48px;
}

/* Form */
.booking-form-area {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
  margin-bottom: 32px;
}

.booking-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.booking-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--off-white);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.booking-input::placeholder { color: var(--muted); }

.booking-input:focus {
  border-color: var(--neon);
  background: rgba(0,240,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,240,255,0.1);
}

.booking-input--date {
  color-scheme: dark;
}

.booking-input--textarea {
  resize: vertical;
  margin-bottom: 24px;
}

.booking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Trust badges */
.booking-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}


/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 60px;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, background 0.3s, color 0.3s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--neon);
  color: var(--black);
  box-shadow: 0 0 20px var(--neon-glow);
}
.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px var(--neon-glow);
  background: var(--white);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
  background: #1fbb57;
}

.btn--large {
  padding: 16px 36px;
  font-size: 0.95rem;
  flex: 1;
  justify-content: center;
}

.btn svg { width: 18px; height: 18px; }


/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.social-link:hover {
  color: var(--neon);
  border-color: var(--neon);
  background: rgba(0,240,255,0.06);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}


/* =============================================
   FLOATING WHATSAPP
============================================= */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  opacity: 0;
  transform: scale(0) translateY(20px);
}

.floating-wa.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.5s 0.5s var(--ease-out-expo), transform 0.5s 0.5s var(--ease-out-expo), box-shadow 0.3s;
}

.floating-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.floating-wa svg { width: 28px; height: 28px; }

.floating-wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green-wa);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}


/* =============================================
   VIDEO MODAL
============================================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  background: var(--dark-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s var(--ease-out-expo);
}

.video-modal.open .video-modal__content {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.video-modal__close:hover { background: rgba(255,255,255,0.2); }

.video-modal__embed {
  aspect-ratio: 16/9;
  width: 100%;
}

.video-placeholder-modal {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0d1a, #1a0a2e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
}

.vpm-icon {
  font-size: 4rem;
  color: var(--neon);
  text-shadow: 0 0 30px var(--neon-glow);
}

.video-placeholder-modal p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--off-white);
}

.video-placeholder-modal span {
  font-size: 0.82rem;
}


/* =============================================
   RESPONSIVE — TABLET
============================================= */
@media (max-width: 1024px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-left { max-width: 540px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gi--tall { grid-row: auto; min-height: 280px; }
  .gi--wide { grid-column: span 2; }
}


/* =============================================
   RESPONSIVE — MOBILE
============================================= */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .video-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .stat-divider { height: 30px; }

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

  .booking-field-group { grid-template-columns: 1fr; }
  .btn--large { flex: 1 1 100%; }

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

  .gi--tall,
  .gi--wide { grid-row: auto; grid-column: auto; }

  .gph--1 { min-height: 260px; }
  .gph--6 { min-height: 260px; }

  .booking-form-area { padding: 24px 20px; }

  .booking-trust { gap: 12px; flex-direction: column; align-items: center; }

  .marquee-item { font-size: 0.78rem; }

  .footer-brand { flex-direction: column; }
}

@media (max-width: 480px) {
  .intro-word {
    font-size: clamp(1.8rem, 9vw, 3rem);
    margin: 0 6px;
  }

  .video-headline { font-size: clamp(3rem, 14vw, 6rem); }

  .play-btn { padding: 12px 20px 12px 14px; font-size: 0.82rem; }
  .play-btn__icon { width: 36px; height: 36px; }
}
