/* ============================================================
   REEL FEEL CINEMA - Design System & Styles
   ============================================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'NeonTubes';
  src: url('../fonts/NeonTubes2.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
video.hero-logo-video{
  border-radius: 60px;
}
/* --- Custom Properties --- */
:root {
  --neon-coral: #ff5c5c;
  --neon-coral-dim: #cc4a4a;
  --neon-coral-bright: #ff8a8a;
  --electric-blue: #2e6bff;
  --electric-blue-dim: #1a4fcc;
  --electric-blue-bright: #6b9aff;
  --firework-gold: #ffd166;
  --firework-gold-dim: #ccaa52;
  --firework-gold-bright: #ffe599;

  --bg-primary: #0a0a0f;
  --bg-secondary: #0f0f1a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 92, 92, 0.3);

  --text-primary: #f0eef2;
  --text-secondary: #a8a3b3;
  --text-muted: #6b6578;

  --glow-coral: 0 0 7px #ff5c5c, 0 0 20px rgba(255, 92, 92, 0.5), 0 0 40px rgba(255, 92, 92, 0.2);
  --glow-coral-strong: 0 0 7px #ff5c5c, 0 0 20px rgba(255, 92, 92, 0.7), 0 0 50px rgba(255, 92, 92, 0.4), 0 0 80px rgba(255, 92, 92, 0.2);
  --glow-blue: 0 0 7px #2e6bff, 0 0 20px rgba(46, 107, 255, 0.5), 0 0 40px rgba(46, 107, 255, 0.2);
  --glow-gold: 0 0 7px #ffd166, 0 0 20px rgba(255, 209, 102, 0.5), 0 0 40px rgba(255, 209, 102, 0.2);

  --font-display: 'NeonTubes', 'Arial Black', sans-serif;
  --font-script: 'Pacifico', cursive;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --nav-height: 70px;
  --section-padding: 100px 0;
  --container-width: 1200px;
  --radius: 12px;
  --radius-sm: 8px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.4s ease;
  --transition-slow: 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

a {
  color: var(--neon-coral);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--neon-coral-bright);
}

ul { list-style: none; }

/* --- Typography --- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--neon-coral);
  text-shadow: var(--glow-coral);
  letter-spacing: 0.04em;
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--text-primary);
}

h3, .h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.3;
  color: var(--text-primary);
}

h4, .h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--text-secondary);
}

.script-text {
  font-family: var(--font-script);
  color: var(--neon-coral);
}

.neon-text {
  color: var(--neon-coral);
  text-shadow: var(--glow-coral);
}

.neon-text-blue {
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

.neon-text-gold {
  color: var(--firework-gold);
  text-shadow: var(--glow-gold);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-coral-dim), transparent);
  margin: 0 auto;
  max-width: 600px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.grid {
  display: grid;
  gap: 30px;
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  text-transform: uppercase;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--neon-coral), var(--neon-coral-dim));
  box-shadow: 0 0 20px rgba(255, 92, 92, 0.3), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--neon-coral-bright), var(--neon-coral));
  box-shadow: 0 0 30px rgba(255, 92, 92, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--neon-coral);
  background: transparent;
  border: 2px solid var(--neon-coral);
  box-shadow: 0 0 10px rgba(255, 92, 92, 0.15), inset 0 0 10px rgba(255, 92, 92, 0.05);
}

.btn-outline:hover {
  color: #fff;
  background: rgba(255, 92, 92, 0.1);
  border-color: var(--neon-coral-bright);
  box-shadow: 0 0 20px rgba(255, 92, 92, 0.3), inset 0 0 20px rgba(255, 92, 92, 0.1);
  transform: translateY(-2px);
}

.btn-gold {
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--firework-gold), var(--firework-gold-dim));
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.3), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--firework-gold-bright), var(--firework-gold));
  box-shadow: 0 0 30px rgba(255, 209, 102, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn-icon svg {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn-icon:hover svg {
  transform: scale(1.15);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-shimmer {
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transition: none;
  animation: none;
}

.btn-shimmer:hover::after {
  animation: btnShimmer 0.6s ease forwards;
}

/* --- Nav Book Now Button --- */
.btn-nav-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
  color: #fff !important;
  background: linear-gradient(135deg, var(--neon-coral), var(--neon-coral-dim)) !important;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.25), 0 0 40px rgba(255, 92, 92, 0.08);
  transition: all 0.3s ease;
  animation: bookNowPulse 3s ease-in-out infinite;
}

.btn-nav-book::after {
  display: none !important;
}

.btn-nav-book:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--neon-coral-bright), var(--neon-coral)) !important;
  box-shadow: 0 0 25px rgba(255, 92, 92, 0.5), 0 0 60px rgba(255, 92, 92, 0.15);
  transform: translateY(-2px) scale(1.03);
  animation: none;
}

.btn-nav-book svg {
  flex-shrink: 0;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 30px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(255, 92, 92, 0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 92, 92, 0.1), 0 0 20px rgba(255, 92, 92, 0.05);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 4px 14px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid;
}

.badge-standard {
  color: var(--electric-blue-bright);
  border-color: var(--electric-blue);
  background: rgba(46, 107, 255, 0.25);
}

.badge-singalong {
  color: var(--firework-gold-bright);
  border-color: var(--firework-gold);
  background: rgba(255, 209, 102, 0.25);
}

.badge-immersive {
  color: var(--neon-coral-bright);
  border-color: var(--neon-coral);
  background: rgba(255, 92, 92, 0.25);
}

.badge-immersive-singalong {
  color: #e89aff;
  border-color: #c964e8;
  background: rgba(201, 100, 232, 0.25);
}

.event-card-image .badge {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: absolute;
  top: 12px;
  right: 12px;
  text-shadow: 0px 0px 4px black;
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-base);
}

.site-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--neon-coral) 20%, var(--electric-blue) 50%, var(--neon-coral) 80%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  box-shadow: 0 0 12px var(--neon-coral), 0 0 30px rgba(255, 92, 92, 0.15);
}

.site-nav.scrolled::after {
  opacity: 1;
  animation: navGlowLine 4s ease-in-out infinite;
}

.site-nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 10px;
  animation: logoPulse 3s ease-in-out infinite;
}

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

.nav-links a {
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.3s ease, text-shadow 0.3s ease, background 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--neon-coral);
  box-shadow: 0 0 8px var(--neon-coral), 0 0 20px rgba(255, 92, 92, 0.3);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1px;
}

.nav-links a:not(.btn-nav-book):hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 92, 92, 0.5), 0 0 30px rgba(255, 92, 92, 0.2);
  background: rgba(255, 92, 92, 0.06);
}

.nav-links a:not(.btn-nav-book).active {
  color: var(--neon-coral);
  text-shadow: 0 0 12px rgba(255, 92, 92, 0.6), 0 0 40px rgba(255, 92, 92, 0.2);
}

.nav-links a:not(.btn-nav-book):hover::after,
.nav-links a:not(.btn-nav-book).active::after {
  width: 60%;
}

/* Cinema-light separators between nav links */
.nav-links .nav-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--neon-coral);
  box-shadow: 0 0 6px var(--neon-coral), 0 0 12px rgba(255, 92, 92, 0.3);
  opacity: 0.5;
  flex-shrink: 0;
  animation: navDotPulse 2s ease-in-out infinite;
}

.nav-links .nav-sep:nth-child(2) { animation-delay: 0.3s; }
.nav-links .nav-sep:nth-child(4) { animation-delay: 0.6s; }
.nav-links .nav-sep:nth-child(6) { animation-delay: 0.9s; }
.nav-links .nav-sep:nth-child(8) { animation-delay: 1.2s; }

/* --- Hamburger Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.nav-toggle:hover {
  border-color: rgba(255, 92, 92, 0.2);
  background: rgba(255, 92, 92, 0.05);
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--neon-coral);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(255, 92, 92, 0.3);
  transform-origin: center;
}

.nav-toggle.open {
  border-color: rgba(255, 92, 92, 0.3);
}

.nav-toggle.open span {
  box-shadow: 0 0 10px rgba(255, 92, 92, 0.5);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Mobile Nav: Full-Screen Cinematic Overlay --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 10, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 92, 92, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(46, 107, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: mobileNavAmbient 8s ease-in-out infinite alternate;
}

.mobile-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-coral), var(--electric-blue), var(--neon-coral), transparent);
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav.open::after {
  opacity: 0.5;
}

/* Mobile nav inner layout */
.mobile-nav-logo {
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.mobile-nav.open .mobile-nav-logo {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0.9);
}

.mobile-nav-tagline {
  font-family: var(--font-script);
  color: var(--neon-coral);
  font-size: 0.95rem;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s;
  text-shadow: 0 0 20px rgba(255, 92, 92, 0.3);
}

.mobile-nav.open .mobile-nav-tagline {
  opacity: 0.8;
  transform: translateY(0);
}

/* Decorative film strip accents */
.mobile-nav-filmstrip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
  pointer-events: none;
}

.mobile-nav.open .mobile-nav-filmstrip {
  opacity: 0.06;
}

.mobile-nav-filmstrip--left { left: 12px; }
.mobile-nav-filmstrip--right { right: 12px; }

.mobile-nav-filmstrip::before,
.mobile-nav-filmstrip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--neon-coral);
}

.mobile-nav-filmstrip::before { left: 0; }
.mobile-nav-filmstrip::after { right: 0; }

.mobile-nav-filmstrip .perf {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 8px;
  background: var(--neon-coral);
  border-radius: 1px;
}

/* Mobile nav links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.mobile-nav-links a {
  display: block;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 32px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a.btn.btn-nav-book {
  margin-left: 15px;
}

.mobile-nav.open .mobile-nav-links a {
  animation: mobileNavLinkIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-nav.open .mobile-nav-links a:nth-child(1) { animation-delay: 0.15s; }
.mobile-nav.open .mobile-nav-links a:nth-child(2) { animation-delay: 0.25s; }
.mobile-nav.open .mobile-nav-links a:nth-child(3) { animation-delay: 0.35s; }
.mobile-nav.open .mobile-nav-links a:nth-child(4) { animation-delay: 0.45s; }

.mobile-nav-links a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 92, 0.15), transparent);
}

.mobile-nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--neon-coral);
  box-shadow: 0 0 8px var(--neon-coral);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--neon-coral);
  text-shadow: 0 0 20px rgba(255, 92, 92, 0.5), 0 0 60px rgba(255, 92, 92, 0.15);
}

.mobile-nav-links a.active::after {
  width: 40px;
}

/* Mobile Book Now CTA */
.mobile-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  text-align: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--neon-coral), var(--neon-coral-dim));
  color: #fff !important;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 0 20px rgba(255, 92, 92, 0.3), 0 0 60px rgba(255, 92, 92, 0.1);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.mobile-nav.open .mobile-book-btn {
  animation: mobileNavLinkIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
}

.mobile-book-btn:hover {
  background: linear-gradient(135deg, var(--neon-coral-bright), var(--neon-coral));
  box-shadow: 0 0 30px rgba(255, 92, 92, 0.5), 0 0 80px rgba(255, 92, 92, 0.15);
  transform: translateY(-2px) !important;
}

.mobile-book-btn svg {
  flex-shrink: 0;
}

/* Nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* --- Nav Keyframes --- */
@keyframes navGlowLine {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes navDotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

@keyframes mobileNavLinkIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }
  60% {
    opacity: 0.8;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes mobileNavAmbient {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-3%, -3%) rotate(2deg); }
}

@keyframes bookNowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 92, 92, 0.25), 0 0 40px rgba(255, 92, 92, 0.08); }
  50% { box-shadow: 0 0 20px rgba(255, 92, 92, 0.4), 0 0 50px rgba(255, 92, 92, 0.12); }
}

/* --- Hero + Marquee Wrapper --- */
.hero-marquee-wrap {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 24px 40px;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}

.hero-bg-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 92, 92, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(46, 107, 255, 0.04) 0%, transparent 40%),
    rgba(0, 0, 0, 0.55);
}

.hero-bg-video-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
  animation: grainShift 0.3s steps(6) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 92, 92, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(46, 107, 255, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 70%, rgba(255, 209, 102, 0.04) 0%, transparent 50%),
              var(--bg-primary);
  z-index: 0;
}

.hero-bg-black {
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 92, 92, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(46, 107, 255, 0.04) 0%, transparent 40%),
              #000;
}

.hero-black {
  background: #000;
}

.hero-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.85);
  animation: heroFadeZoomIn 3.5s linear 1.5s forwards;
}

@keyframes heroFadeZoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-logo {
  max-width: 500px;
  width: 80%;
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 30px rgba(255, 92, 92, 0.3));
}

.hero-logo-video {
  max-width: 550px;
  width: 85%;
  margin: 0 auto 30px;
  display: block;
  border-radius: 4px;
}

.hero-tagline {
  font-family: var(--font-script);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--neon-coral-bright);
  text-shadow: 0 0 15px rgba(255, 92, 92, 0.4);
  margin-bottom: 40px;
  min-height: 2.2em;
}

.hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--neon-coral);
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: floatDown 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
}

/* --- Marquee Strip --- */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(255, 92, 92, 0.05), rgba(46, 107, 255, 0.05), rgba(255, 209, 102, 0.05));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 20s linear infinite;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: transparent;
  -webkit-text-stroke: 1px var(--neon-coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-coral);
  box-shadow: 0 0 10px var(--neon-coral);
  flex-shrink: 0;
}

/* --- Event Type Rows (full-width 2-col) --- */
.event-types {
  background: var(--bg-secondary);
}

.etype-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 0;
}

.etype-row-reverse {
  direction: rtl;
}

.etype-row-reverse > * {
  direction: ltr;
}

.etype-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.etype-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.etype-image:hover img {
  transform: scale(1.04);
}

.etype-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.etype-row-reverse .etype-badge {
  left: auto;
  right: 16px;
}

.etype-content {
  padding: 10px 0;
}

.etype-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--neon-coral);
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.2), inset 0 0 15px rgba(255, 92, 92, 0.05);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.etype-content h3 {
  margin-bottom: 10px;
  color: var(--neon-coral-bright);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

.etype-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.etype-features {
  margin-bottom: 24px;
}

.etype-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 5px 0;
}

.etype-features li svg {
  flex-shrink: 0;
}

/* --- Experience Blocks (expanded) --- */
.exp-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.exp-block:last-child {
  margin-bottom: 0;
}

.exp-block-reverse {
  direction: rtl;
}

.exp-block-reverse > * {
  direction: ltr;
}

.exp-block-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.exp-block-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.exp-block-image:hover img {
  transform: scale(1.04);
}

.exp-block-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.2);
  color: var(--firework-gold);
  margin-bottom: 14px;
}

.exp-block-content h3 {
  margin-bottom: 10px;
  color: var(--firework-gold-bright);
}

.exp-block-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.exp-block-bullets {
  list-style: none;
}

.exp-block-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 4px 0;
}

.exp-block-bullets li svg {
  flex-shrink: 0;
}

/* --- Featured Event Section --- */
.featured-event {
  background: var(--bg-secondary);
}

.featured-event-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-event-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.featured-event-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-event-image:hover img {
  transform: scale(1.05);
}

.featured-event-details .badge {
  margin-bottom: 16px;
}

.featured-event-details h2 {
  margin-bottom: 8px;
}

.featured-event-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.featured-event-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-event-details p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

/* --- Gallery Teaser --- */
.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-teaser-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-teaser-item:hover img {
  transform: scale(1.08) rotate(1deg);
}

.gallery-teaser-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-teaser-item:hover::after {
  opacity: 1;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(255, 92, 92, 0.08), transparent 70%);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */
.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  margin-top: 60px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--neon-coral);
  box-shadow: var(--glow-coral);
  animation: glowPulse 3s ease-in-out infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.footer-col p,
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--neon-coral);
}

.footer-links a {
  display: block;
  padding: 4px 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--neon-coral);
  color: var(--neon-coral);
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.2);
}

.footer-notices {
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-notice svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-notice--gemini svg {
  filter: drop-shadow(0 0 4px rgba(255, 209, 102, 0.4));
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Events Page --- */
.events-page {
  padding-top: calc(var(--nav-height) + 40px);
  position: relative;
}

.film-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 12px,
    transparent 12px,
    transparent 30px,
    rgba(255, 92, 92, 0.06) 30px,
    rgba(255, 92, 92, 0.06) 50px,
    transparent 50px,
    transparent 60px,
    rgba(255, 255, 255, 0.03) 60px,
    rgba(255, 255, 255, 0.03) 62px,
    transparent 62px,
    transparent 72px
  );
  z-index: 10;
  pointer-events: none;
  border-right: 2px solid rgba(255, 255, 255, 0.06);
}

.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  opacity: 0.04;
  animation: grainShift 0.5s steps(4) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-tab {
  padding: 8px 24px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-tab:hover {
  border-color: var(--neon-coral-dim);
  color: var(--neon-coral);
}

.filter-tab.active {
  color: #fff;
  background: rgba(255, 92, 92, 0.15);
  border-color: var(--neon-coral);
  box-shadow: 0 0 10px rgba(255, 92, 92, 0.2);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  transition: all var(--transition-spring);
  transform-origin: center bottom;
}

.event-card.entering {
  animation: reelUnwind 0.7s var(--transition-slow) forwards;
}

.event-card.hidden {
  display: none;
}

.event-card-image {
  height: 220px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  overflow: hidden;
  position: relative;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-date {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--firework-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.event-card-body h3 {
  margin-bottom: 6px;
}

.event-card-venue {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 16px;
  max-height: none;
  overflow: visible;
}

.event-card-body .btn {
  margin-top: auto;
}

/* --- Gallery Page --- */
.gallery-page {
  padding-top: calc(var(--nav-height) + 40px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.polaroid {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 10px 10px 48px;
  cursor: pointer;
  transition: all var(--transition-spring);
  transform: rotate(var(--rotation, 0deg));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.polaroid.in-view {
  transform: rotate(0deg);
}

.polaroid:hover {
  transform: rotate(0deg) translateY(-10px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 92, 92, 0.15);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}

.polaroid-caption {
  text-align: center;
  padding-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--neon-coral);
  text-shadow: 0 0 7px rgba(255, 92, 92, 0.5), 0 0 20px rgba(255, 92, 92, 0.25);
  letter-spacing: 0.04em;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.open .lightbox-overlay {
  opacity: 1;
}

.lightbox-curtain-left,
.lightbox-curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.lightbox-curtain-left {
  left: 0;
  transform: translateX(0);
}

.lightbox-curtain-right {
  right: 0;
  transform: translateX(0);
}

.lightbox.revealed .lightbox-curtain-left {
  transform: translateX(-100%);
}

.lightbox.revealed .lightbox-curtain-right {
  transform: translateX(100%);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}

.lightbox.revealed .lightbox-content {
  opacity: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--neon-coral);
  background: rgba(255, 255, 255, 0.1);
}

/* --- Booking Placeholder Modal --- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.open {
  display: flex;
}

.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: linear-gradient(145deg, rgba(15, 15, 26, 0.96), rgba(7, 7, 12, 0.98));
  border: 1px solid rgba(255, 92, 92, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 36px rgba(255, 92, 92, 0.12);
  padding: 30px 28px 24px;
  text-align: center;
  animation: bookingModalIn 0.25s ease-out;
}

.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.booking-modal-close:hover {
  color: var(--neon-coral);
  background: rgba(255, 92, 92, 0.1);
}

.booking-modal-icon {
  width: 56px;
  height: 56px;
  margin: 2px auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-coral);
  background: rgba(255, 92, 92, 0.1);
  border: 1px solid rgba(255, 92, 92, 0.32);
  box-shadow: 0 0 20px rgba(255, 92, 92, 0.2);
}

.booking-modal-panel h3 {
  margin-bottom: 12px;
}

.booking-modal-panel p {
  margin: 0 auto;
  max-width: 44ch;
  color: var(--text-secondary);
}

.booking-modal-cta {
  margin-top: 20px;
}

@keyframes bookingModalIn {
  from {
    transform: translateY(8px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* --- Contact Page --- */
.contact-page {
  padding-top: calc(var(--nav-height) + 40px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form .form-group {
  margin-bottom: 24px;
  position: relative;
}

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition-base);
  position: relative;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--neon-coral);
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.15);
}

.neon-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--neon-coral);
  box-shadow: 0 0 8px var(--neon-coral);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.form-group:focus-within .neon-underline {
  width: 100%;
}

.form-message {
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 500;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(92, 255, 120, 0.1);
  border: 1px solid rgba(92, 255, 120, 0.3);
  color: #5cff78;
  box-shadow: 0 0 15px rgba(92, 255, 120, 0.1);
}

.form-message.error {
  display: block;
  background: rgba(255, 92, 92, 0.1);
  border: 1px solid rgba(255, 92, 92, 0.3);
  color: var(--neon-coral);
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px;
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 92, 92, 0.08);
  border: 1px solid rgba(255, 92, 92, 0.2);
  color: var(--neon-coral);
  font-size: 1.1rem;
}

.neon-sign {
  display: inline-block;
  color: var(--neon-coral);
  text-shadow: var(--glow-coral);
}

.neon-sign-blue {
  color: var(--electric-blue);
  text-shadow: var(--glow-blue);
}

/* Spotlight sweep background for contact page */
.spotlight-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle 400px at var(--spotlight-x, 30%) var(--spotlight-y, 40%),
    rgba(255, 92, 92, 0.04) 0%, transparent 100%);
  animation: spotlightSweep 12s ease-in-out infinite;
}

/* --- Page Header (reusable for events/gallery/contact) --- */
.page-header {
  text-align: center;
  padding: 40px 0 50px;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Projector Dust (Gallery bg) --- */
.projector-dust {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* --- Floating Next Event Pill --- */
.next-event-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 92, 92, 0.1);
  display: flex;
  overflow: hidden;
  max-width: 300px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: pillSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

.next-event-pill.dismissed {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.pill-accent {
  width: 4px;
  background: linear-gradient(to bottom, var(--neon-coral), var(--firework-gold));
  flex-shrink: 0;
}

.pill-body {
  padding: 14px 16px;
  flex: 1;
  min-width: 0;
}

.pill-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 6px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.pill-close:hover {
  color: var(--text-primary);
}

.pill-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-coral);
  margin-bottom: 4px;
}

.pill-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 16px;
}

.pill-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin: 4px 0 10px;
}

.pill-meta svg {
  flex-shrink: 0;
}

.pill-actions {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.pill-btn {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.pill-btn svg {
  flex-shrink: 0;
}

.pill-btn-primary {
  color: #fff;
  background: var(--neon-coral);
  box-shadow: 0 0 10px rgba(255, 92, 92, 0.2);
}

.pill-btn-primary:hover {
  color: #fff;
  background: var(--neon-coral-bright);
  box-shadow: 0 0 15px rgba(255, 92, 92, 0.4);
}

.pill-btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.pill-btn-ghost:hover {
  color: var(--neon-coral);
  border-color: var(--neon-coral-dim);
}

/* ============================================================
   ANIMATION KEYFRAMES
   ============================================================ */

@keyframes blink {
  50% { opacity: 0; }
}

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

@keyframes floatDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; box-shadow: 0 0 10px rgba(255, 92, 92, 0.3); }
  50% { opacity: 1; box-shadow: 0 0 20px rgba(255, 92, 92, 0.6); }
}

@keyframes glowPulseText {
  0%, 100% { text-shadow: 0 0 7px currentColor, 0 0 20px currentColor; }
  50% { text-shadow: 0 0 14px currentColor, 0 0 40px currentColor, 0 0 60px currentColor; }
}

@keyframes neonFlicker {
  0% { opacity: 0; }
  5% { opacity: 0.6; }
  10% { opacity: 0.2; }
  15% { opacity: 0.8; }
  20% { opacity: 0.3; }
  30% { opacity: 1; }
  40% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes colorShift {
  0%, 100% { color: var(--neon-coral); text-shadow: var(--glow-coral); }
  33% { color: var(--firework-gold); text-shadow: var(--glow-gold); }
  66% { color: var(--electric-blue); text-shadow: var(--glow-blue); }
}

@keyframes reelUnwind {
  0% { opacity: 0; transform: rotate(3deg) scale(0.9); }
  60% { transform: rotate(-0.5deg) scale(1.02); }
  100% { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2px, 2px); }
  50% { transform: translate(2px, -1px); }
  75% { transform: translate(-1px, -2px); }
  100% { transform: translate(0, 0); }
}

@keyframes spotlightSweep {
  0% { --spotlight-x: 20%; --spotlight-y: 30%; }
  25% { --spotlight-x: 70%; --spotlight-y: 20%; }
  50% { --spotlight-x: 80%; --spotlight-y: 60%; }
  75% { --spotlight-x: 30%; --spotlight-y: 70%; }
  100% { --spotlight-x: 20%; --spotlight-y: 30%; }
}

@keyframes slideRevealChar {
  0% { opacity: 0; transform: translateY(100%); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@keyframes logoPulse {
  0%, 100% { filter: brightness(0.4); }
  50% { filter: brightness(1); }
}

@keyframes btnShimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

@keyframes pillSlideIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .featured-event-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .film-strip { display: none; }
  .etype-row, .exp-block { gap: 30px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --nav-height: 60px;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .nav-overlay { display: block; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .footer-notice { font-size: 0.72rem; }

  .hero { padding: 80px 20px 30px; }
  .hero-logo { max-width: 320px; }
  .hero-logo-video { max-width: 340px; }

  .featured-event-image img { height: 260px; }

  .etype-row,
  .etype-row-reverse,
  .exp-block,
  .exp-block-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .etype-image img { height: 220px; }
  .exp-block-image img { height: 200px; }
  .exp-block { margin-bottom: 40px; }

  .next-event-pill {
    right: 12px;
    bottom: 12px;
    max-width: 220px;
  }
  .next-event-pill .pill-body { padding: 8px 10px; }
  .next-event-pill .pill-label { font-size: 0.55rem; margin-bottom: 1px; }
  .next-event-pill .pill-title { font-size: 0.78rem; padding-right: 12px; }
  .next-event-pill .pill-meta { font-size: 0.65rem; margin: 2px 0 6px; gap: 3px; }
  .next-event-pill .pill-meta svg { width: 10px; height: 10px; }
  .next-event-pill .pill-actions { gap: 5px; }
  .next-event-pill .pill-btn { padding: 5px 10px; font-size: 0.6rem; }
  .next-event-pill .pill-btn svg { width: 11px; height: 11px; }
  .next-event-pill .pill-close { font-size: 0.95rem; top: 4px; right: 5px; }
}

@media (max-width: 480px) {
  .gallery-teaser-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 28px; font-size: 0.9rem; }
  .btn-sm { padding: 8px 18px; font-size: 0.8rem; }

  .next-event-pill { max-width: 200px; right: 8px; bottom: 8px; }
  .next-event-pill .pill-body { padding: 7px 8px; }
  .next-event-pill .pill-title { font-size: 0.72rem; }
  .next-event-pill .pill-btn { padding: 4px 8px; font-size: 0.55rem; }
}

/* --- Email Signup Toast --- */
.email-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1101;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
  max-width: 320px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), bottom 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 92, 92, 0.1);
}

.email-toast.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.email-toast.dismissed {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

.email-toast-accent {
  width: 4px;
  background: linear-gradient(to bottom, var(--firework-gold), var(--neon-coral));
  flex-shrink: 0;
}

.email-toast-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  z-index: 2;
}

.email-toast-close:hover {
  color: var(--neon-coral);
  text-shadow: var(--glow-coral);
}

.email-toast-body {
  padding: 12px 28px 14px 12px;
  flex: 1;
  min-width: 0;
}

.email-toast-heading {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--neon-coral);
  text-shadow: 0 0 7px rgba(255, 92, 92, 0.5);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.email-toast-offer {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 10px;
}

.email-toast-offer strong {
  color: var(--firework-gold);
}

.email-toast-form {
  position: relative;
}

.email-toast-input-wrap {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.email-toast-input-wrap:focus-within {
  border-color: var(--neon-coral);
  box-shadow: 0 0 10px rgba(255, 92, 92, 0.15);
}

.email-toast-input-wrap input {
  flex: 1;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  min-width: 0;
}

.email-toast-input-wrap input::placeholder {
  color: var(--text-muted);
}

.email-toast-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  background: linear-gradient(135deg, var(--neon-coral), var(--neon-coral-dim));
  border: none;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

.email-toast-submit:hover {
  background: linear-gradient(135deg, var(--neon-coral-bright), var(--neon-coral));
  box-shadow: 0 0 14px rgba(255, 92, 92, 0.4);
}

.email-toast-success {
  display: none;
  padding: 6px 0 2px;
  color: var(--firework-gold);
  font-family: var(--font-script);
  font-size: 0.95rem;
  text-shadow: 0 0 8px rgba(255, 209, 102, 0.3);
}

.email-toast-form.submitted .email-toast-input-wrap { display: none; }
.email-toast-form.submitted .email-toast-success { display: block; }

/* Push pill down when toast is visible above it */
.email-toast.visible ~ .next-event-pill {
  transform: none;
  animation: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .email-toast {
    right: 12px;
    bottom: 12px;
    max-width: 240px;
  }
  .email-toast-body { padding: 8px 22px 10px 10px; }
  .email-toast-heading { font-size: 0.82rem; margin-bottom: 2px; }
  .email-toast-offer { font-size: 0.72rem; margin-bottom: 7px; line-height: 1.35; }
  .email-toast-input-wrap input { padding: 7px 8px; font-size: 0.78rem; }
  .email-toast-submit { padding: 7px 11px; }
  .email-toast-close { font-size: 1rem; top: 4px; right: 5px; }
}

@media (max-width: 480px) {
  .email-toast {
    right: 8px;
    bottom: 8px;
    max-width: 210px;
  }
  .email-toast-body { padding: 7px 20px 9px 8px; }
  .email-toast-heading { font-size: 0.75rem; margin-bottom: 1px; }
  .email-toast-offer { font-size: 0.68rem; margin-bottom: 6px; line-height: 1.3; }
  .email-toast-input-wrap input { padding: 6px 7px; font-size: 0.74rem; }
  .email-toast-submit { padding: 6px 10px; }
  .email-toast-submit svg { width: 13px; height: 13px; }
  .email-toast-close { font-size: 0.9rem; top: 3px; right: 4px; }
}

/* --- Homepage Preloader Curtain --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.preloader-curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}

.preloader-curtain--left {
  left: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(40, 2, 5, 0.25) 0px, transparent 1px, transparent 28px,
      rgba(40, 2, 5, 0.15) 28px, transparent 29px, transparent 56px),
    linear-gradient(to right,
      #010000 0%, #030001 12%, #080203 28%, #0d0305 40%,
      #120407 50%, #0d0305 60%, #080203 72%, #030001 88%, #010000 100%);
}

.preloader-curtain--right {
  right: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(40, 2, 5, 0.25) 0px, transparent 1px, transparent 28px,
      rgba(40, 2, 5, 0.15) 28px, transparent 29px, transparent 56px),
    linear-gradient(to left,
      #010000 0%, #030001 12%, #080203 28%, #0d0305 40%,
      #120407 50%, #0d0305 60%, #080203 72%, #030001 88%, #010000 100%);
}

.preloader.open .preloader-curtain--left {
  transform: translateX(-100%);
}

.preloader.open .preloader-curtain--right {
  transform: translateX(100%);
}

.preloader-reel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: opacity 0.35s ease;
}

.preloader.open .preloader-reel {
  opacity: 0;
}

.reel-spinner {
  width: 72px;
  height: 72px;
  animation: reelSpin 1.4s linear infinite;
}

.reel-outer {
  position: relative;
  width: 100%;
  height: 100%;
  border: 3px solid var(--neon-coral);
  border-radius: 50%;
  box-shadow:
    0 0 12px rgba(255, 92, 92, 0.4),
    inset 0 0 12px rgba(255, 92, 92, 0.15);
}

.reel-spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background: var(--neon-coral);
  transform-origin: 0 50%;
  box-shadow: 0 0 6px rgba(255, 92, 92, 0.5);
}

.reel-spoke:nth-child(1) { transform: rotate(0deg); }
.reel-spoke:nth-child(2) { transform: rotate(72deg); }
.reel-spoke:nth-child(3) { transform: rotate(144deg); }
.reel-spoke:nth-child(4) { transform: rotate(216deg); }
.reel-spoke:nth-child(5) { transform: rotate(288deg); }

.reel-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #0a0000;
  border: 2px solid var(--neon-coral);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(255, 92, 92, 0.6);
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--neon-coral);
  text-shadow:
    0 0 10px rgba(255, 92, 92, 0.6),
    0 0 30px rgba(255, 92, 92, 0.3);
  letter-spacing: 0.15em;
  margin: 0;
}

@keyframes reelSpin {
  to { transform: rotate(360deg); }
}

body.preloader-active .hero-content {
  animation: none;
}

body.preloader-reveal .hero-content {
  animation: heroFadeZoomIn 3.5s linear 0s forwards;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-content { opacity: 1; transform: none; animation: none; }
  .marquee-track { animation: none; }
  .hero-canvas { display: none; }
  .hero-bg-video { display: none; }
  .hero-bg-video-grain { display: none; }
  .film-grain { display: none; }
  .projector-dust { display: none; }
  .next-event-pill { animation: none; opacity: 1; transform: none; }
  .email-toast { transition: none; }
  .email-toast.visible { transform: none; }
  .preloader { display: none; }
}
