/* ============================================
   PARADISE PLAYDIUM - MAIN STYLESHEET
   Cosmic Space Theme | Target: Families 21-45
   ============================================ */

@font-face {
  font-family: 'PlanetGamers';
  src: url('fonts/PlanetGamersDemo-qZJv2.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;900&family=Nunito:wght@400;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --space-navy:    #07080F;
  --deep-blue:     #0D0F1A;
  --cosmic-blue:   #1A3CC6;
  --sky-blue:      #3D8EFF;
  --nebula-glow:   #5BB8FF;
  --star-white:    #EEF4FF;
  --orange-sun:    #F5A623;
  --orange-fire:   #FF6B00;
  --gold-accent:   #FFD166;
  --red-robot:     #CC2222;
  --surface:       rgba(255,255,255,0.04);
  --surface-light: rgba(255,255,255,0.07);
  --glass:         rgba(255,255,255,0.07);
  --glass-border:  rgba(255,255,255,0.14);
  --font-display:  'PlanetGamers', 'Exo 2', sans-serif;
  --font-body:     'Nunito', sans-serif;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --shadow-glow:   0 0 40px rgba(91,184,255,0.25);
  --shadow-orange: 0 0 40px rgba(245,166,35,0.35);
  --neon-glow:     0 0 12px rgba(255,107,0,0.7), 0 0 30px rgba(255,107,0,0.3);
  --neon-glow-sm:  0 0 6px rgba(255,107,0,0.6);
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--space-navy);
  color: var(--star-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ── STAR FIELD BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,60,198,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(91,184,255,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(245,166,35,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,14,42,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10,14,42,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--star-white);
}

.nav-logo-text span {
  color: var(--orange-sun);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(238,244,255,0.8);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--orange-sun);
  background: var(--glass);
}

.nav-links a.active {
  color: var(--orange-sun);
}

.nav-cta {
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-sun));
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.55) !important;
  background: linear-gradient(135deg, var(--orange-sun), var(--gold-accent)) !important;
}

.nav-cta-outline {
  border: 2px solid var(--orange-sun) !important;
  color: var(--orange-sun) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: var(--transition);
}

.nav-cta-outline:hover {
  background: rgba(245,166,35,0.12) !important;
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--star-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26,60,198,0.6) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 100%, rgba(10,14,42,1) 0%, transparent 60%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><rect fill="%230A0E2A"/></svg>');
  z-index: -1;
}

/* Stars animation */
.stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(91,184,255,0.3); }
  50% { box-shadow: 0 0 60px rgba(91,184,255,0.7), 0 0 100px rgba(26,60,198,0.4); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(80px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shine {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-sun);
  text-shadow: var(--neon-glow-sm);
  margin-bottom: 1.5rem;
  animation: slide-up 0.8s ease both;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange-fire);
  box-shadow: 0 0 6px rgba(255,107,0,0.6);
}

.hero-badge::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--orange-fire);
  box-shadow: 0 0 6px rgba(255,107,0,0.6);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  animation: slide-up 0.8s 0.15s ease both;
}

.hero-title .line-1 { color: var(--star-white); }
.hero-title .line-2 {
  background: linear-gradient(135deg, var(--orange-sun) 0%, var(--gold-accent) 50%, var(--orange-fire) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slide-up 0.8s 0.15s ease both, shine 3s linear 1s infinite;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(238,244,255,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
  animation: slide-up 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slide-up 0.8s 0.45s ease both;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  animation: slide-up 0.8s 0.15s ease both;
  margin: 3rem auto 2.5rem;
  padding: 0.5rem 0;
}

.hero-brand-icon {
  height: 1em;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1.05;
  position: relative;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 30%, #5B8FFF 48%, #A8C8FF 54%, #ffffff 70%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slide-up 0.8s 0.15s ease both, shine 3s linear 1s infinite;
}

.hero-brand-name::before {
  content: '';
  position: absolute;
  inset: -0.4em -0.6em;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(28px);
  border-radius: 10px;
  z-index: -1;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-sun));
  color: white;
  box-shadow: 0 6px 30px rgba(255,107,0,0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.6);
}

.btn-secondary {
  background: var(--glass);
  color: var(--star-white);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--surface-light);
  border-color: var(--sky-blue);
  transform: translateY(-3px);
}

/* ── SECTION BASE ── */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-sun);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: var(--neon-glow-sm);
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--orange-sun);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: rgba(238,244,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* center variant */
.text-center { text-align: center; }
.text-center .section-label { justify-content: center; }
.text-center .section-label::before { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--orange-sun); }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* standalone centered label (used outside .text-center wrappers) */
.section-label-center { justify-content: center; }
.section-label-center::before { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--orange-sun); }

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-fire), var(--orange-sun), var(--gold-accent));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.2);
  box-shadow: 0 8px 40px rgba(255,107,0,0.12);
}

.card:hover::before { opacity: 1; }

.card:hover .card-title {
  color: var(--orange-sun);
  text-shadow: var(--neon-glow-sm);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--deep-blue), var(--cosmic-blue));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(26,60,198,0.5);
}

.card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--star-white);
}

.card-text {
  color: rgba(238,244,255,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── ATTRACTIONS GRID ── */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.attraction-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: true;
}

.attraction-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.attraction-card:hover .attraction-card-bg {
  transform: scale(1.08);
}

.attraction-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,42,0.1) 0%, rgba(10,14,42,0.85) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.attraction-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.attraction-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.attraction-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-sun));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* Lazer Tag Card - special styling */
.attraction-card.lazer-tag .attraction-card-bg {
  background: linear-gradient(135deg, #1a0a00, #3d1500);
}

.attraction-card.lazer-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange-fire);
  border-radius: var(--radius-md);
  opacity: 0;
  transition: var(--transition);
  animation: pulse-glow-orange 2s infinite;
}

@keyframes pulse-glow-orange {
  0%, 100% { box-shadow: inset 0 0 20px rgba(255,107,0,0.1); }
  50% { box-shadow: inset 0 0 40px rgba(255,107,0,0.3); }
}

.attraction-card.lazer-tag:hover::after { opacity: 1; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 3rem 2rem;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--orange-sun), var(--gold-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
  text-shadow: var(--neon-glow);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238,244,255,0.55);
}

/* ── PARTY PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border-color: var(--orange-sun);
  box-shadow: 0 0 40px rgba(245,166,35,0.2);
}

.package-card.featured::before {
  content: '⭐ MOST POPULAR';
  position: absolute;
  top: 16px; right: -28px;
  background: linear-gradient(135deg, var(--orange-fire), var(--orange-sun));
  color: white;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 2.5rem;
  transform: rotate(35deg);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.package-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.package-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange-sun);
  margin: 0.75rem 0;
  line-height: 1;
}

.package-price span {
  font-size: 1rem;
  color: rgba(238,244,255,0.5);
  font-weight: 400;
}

.package-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  flex: 1;
}

.package-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: rgba(238,244,255,0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-features li::before { content: '✓'; color: var(--orange-sun); font-weight: 700; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91,184,255,0.3);
}

.testimonial-stars {
  color: var(--orange-sun);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(238,244,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-blue), var(--cosmic-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-detail {
  font-size: 0.8rem;
  color: rgba(238,244,255,0.5);
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,60,198,0.4) 0%, transparent 70%);
}

.cta-section .section-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: rgba(238,244,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* ── HOURS & INFO ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.hours-table tr { border-bottom: 1px solid var(--glass-border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.6rem 0; font-size: 0.9rem; }
.hours-table td:first-child { color: rgba(238,244,255,0.6); }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* ── FOOTER ── */
.footer {
  background: rgba(5,8,22,0.95);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(91,184,255,0.3);
}

.footer-brand p {
  color: rgba(238,244,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange-fire);
  border-color: var(--orange-fire);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-sun);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(238,244,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--star-white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(238,244,255,0.35);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: linear-gradient(90deg, var(--orange-fire), var(--orange-sun), var(--orange-fire));
  background-size: 200% auto;
  animation: shine 4s linear infinite;
  color: white;
  text-align: center;
  padding: 0.6rem 2rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

body.has-announcement .nav { top: 36px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,60,198,0.5) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.page-hero-sub {
  color: rgba(238,244,255,0.7);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ── LAZER TAG PAGE OVERRIDE ── */
.lazer-theme {
  --accent-1: #FF6B00;
  --accent-2: #FFB340;
}

.lazer-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(80,30,0,0.7) 0%, var(--space-navy) 70%) !important;
}

.lazer-glow {
  text-shadow: 0 0 30px rgba(255,107,0,0.6), 0 0 60px rgba(255,107,0,0.3);
}

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(10,14,42,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: rgba(238,244,255,0.85);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--orange-sun);
  background: var(--glass);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 90px 1.25rem 3rem; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-brand { font-size: clamp(2.3rem, 6.5vw, 4rem); }

  /* Attraction cards — single column, wide aspect ratio */
  .attractions-grid { grid-template-columns: 1fr; gap: 1rem; }
  .attraction-card { aspect-ratio: 16/9; }

  /* About section — stack two-column into one */
  #about .section-inner > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Stats */
  .stat-number { font-size: 2.2rem; }

  /* Section padding */
  .section { padding: 3rem 1.25rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .section-subtitle { font-size: 0.95rem; }

  /* Info grid */
  .info-grid { grid-template-columns: 1fr; }

  /* Party packages */
  .packages-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* CTA buttons */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  /* Page hero (inner pages) */
  .page-hero { padding: 130px 1.25rem 60px; }
  .page-hero-title { font-size: clamp(1.8rem, 6vw, 3rem); }

  /* Steps (laser tag) */
  .lt-steps { flex-direction: column; align-items: center; }
  .lt-step-arrow { display: none !important; }
  .lt-features-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* Announcement bar */
  .announcement-bar { font-size: 0.68rem; padding: 0.5rem 1rem; line-height: 1.4; }

  /* Stats grid */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 1rem 2.5rem; }
  .hero-title { font-size: clamp(1.4rem, 7vw, 2rem); }
  .hero-brand { font-size: clamp(1.6rem, 7vw, 2.8rem); }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .section { padding: 2.5rem 1rem; }
  .card { padding: 1.5rem 1.25rem; }
  .package-card { padding: 1.75rem 1.25rem; }
  .lt-stats-row { flex-direction: column; gap: 1rem; }
  .lt-stat-divider { width: 40px; height: 1px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stat-number { font-size: 2rem; }
}
