/* =========================
   CSS RESET
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

/* =========================
   ROOT VARIABLES
========================= */
:root {
  --bg-dark: #070b14;
  --bg-mid: #101826;
  --bg-light: #172338;
  --text: #edf3ff;
  --muted: #b7c3d9;
  --accent: #5ee7ff;
  --accent-2: #9f6bff;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.15);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* =========================
   BASE
========================= */
body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-mid));
  color: var(--text);
}

h1, h2, h3, .logo {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.section-inner {
  width: min(90%, 1100px);
  margin: 0 auto;
}

.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.content-section {
  padding: 5rem 0;
}

.content-section h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.content-section p {
  max-width: 70ch;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1rem 1.25rem;
  background: rgba(7, 11, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.1rem;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(94, 231, 255, 0.4);
}

.menu-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 16, 28, 0.98);
  border-bottom: 1px solid var(--border);
  display: none;
}

.site-nav.open {
  display: block;
}

.site-nav ul {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
}

.site-nav li + li {
  margin-top: 0.9rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.25s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 7rem 1.25rem 4rem;
  background:
    radial-gradient(circle at top right, rgba(159, 107, 255, 0.25), transparent 30%),
    radial-gradient(circle at left center, rgba(94, 231, 255, 0.18), transparent 30%),
    linear-gradient(rgba(4, 8, 15, 0.65), rgba(4, 8, 15, 0.85)),
    linear-gradient(135deg, #0a1120, #121c2e 60%, #1c2740);
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, transparent, rgba(7, 11, 20, 0.55));
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(90%, 900px);
  margin: 0 auto;
  animation: fadeUp 1.2s ease forwards;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 14vw, 8rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow:
    0 0 20px rgba(94, 231, 255, 0.22),
    0 0 40px rgba(159, 107, 255, 0.18);
  animation: pulseGlow 3s ease-in-out infinite;
}

.tagline {
  font-size: clamp(1.1rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 60ch;
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  width: fit-content;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #08111c;
  box-shadow: 0 10px 24px rgba(94, 231, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(94, 231, 255, 0.35);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* =========================
   CARDS / REVIEWS / GALLERY
========================= */
.cards,
.reviews-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.card,
.review,
.gallery-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card {
  padding: 1.4rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 231, 255, 0.4);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.subhead {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.review {
  padding: 1.5rem;
}

.review p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review cite {
  color: var(--muted);
  font-style: normal;
}

.gallery-item {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  background:
    linear-gradient(rgba(10, 16, 28, 0.45), rgba(10, 16, 28, 0.8)),
    linear-gradient(135deg, rgba(94, 231, 255, 0.15), rgba(159, 107, 255, 0.18));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

/* =========================
   SECTION STYLES
========================= */
.story-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.cast-section {
  background: rgba(255,255,255,0.015);
}

.reviews-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03));
}

.tickets-section {
  text-align: center;
}

.tickets-section p {
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(94, 231, 255, 0.2),
      0 0 40px rgba(159, 107, 255, 0.1);
  }
  50% {
    text-shadow:
      0 0 28px rgba(94, 231, 255, 0.35),
      0 0 48px rgba(159, 107, 255, 0.25);
  }
}

/* =========================
   DESKTOP / TABLET
========================= */
@media (min-width: 700px) {
  .hero-buttons {
    flex-direction: row;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    display: block;
    background: transparent;
    border: none;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }

  .site-nav li + li {
    margin-top: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .content-section {
    padding: 7rem 0;
  }
}