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

:root {
  /* ── MOOCH brand palette ── */
  --pink:      #f460f8;  /* Glitter — MAIN color */
  --magenta:   #df0ae6;  /* vivid magenta — hovers / glows */
  --purple:    #800684;  /* Shane's Revenge */
  --pink-soft: #fabffc;  /* soft light pink */
  --ink:       #210122;  /* Nail Polish — deepest */

  --black:   #0c0610;    /* page background (purple-black) */
  --dark:    #150b1c;    /* section alternate */
  --mid:     #20122a;    /* cards */
  --white:   #f5ecf7;
  --cream:   #d9cfe2;
  --muted:   #9a87a3;

  /* aliases used throughout the stylesheet */
  --red:     #800684;    /* structural / button base → purple */
  --red-hot: #f460f8;    /* accents, links, labels, logo → glitter */

  --font-display: 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-body:    'Georgia', serif;
  --font-mono:    'Courier New', monospace;
}

html { scroll-behavior: smooth; }

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

a { color: var(--red-hot); text-decoration: none; }
a:hover { color: var(--white); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  color: var(--red-hot);
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav ul a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
}
.nav ul a:hover { color: var(--red-hot); }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #2a0830 0%, var(--black) 70%);
}

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

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  width: 100%;
}

.hero-poster {
  width: 280px;
  flex-shrink: 0;
  border: 2px solid #2a2a2a;
  box-shadow: 0 0 60px rgba(244,96,248,0.35), 0 0 120px rgba(0,0,0,0.8);
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  letter-spacing: 0.3em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 40px rgba(244,96,248,0.55);
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hot);
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--red-hot);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--magenta); color: var(--white); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.7rem; }
.coming-soon { opacity: 0.5; cursor: default; }
.coming-soon:hover { background: var(--red); }

/* ── Sections ── */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--dark); }
.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2a2a2a;
}

/* ── Film ── */
.synopsis {
  font-size: 1.05rem;
  color: var(--cream);
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.director-quote {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--red);
  background: var(--mid);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  max-width: 700px;
}
.director-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── Cast ── */
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.cast-card {
  background: var(--mid);
  border: 1px solid #2a2a2a;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.cast-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.cast-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.cast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.cast-card:hover .cast-img {
  transform: scale(1.04);
}

.cast-info {
  padding: 1.2rem 1.5rem 1.5rem;
}

.cast-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 0.4rem;
}

.cast-actor {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cast-credits {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Cast: two compact columns on phones so it isn't an endless scroll */
@media (max-width: 600px) {
  .cast-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .cast-info { padding: 0.7rem 0.8rem 0.9rem; }
  .cast-role { font-size: 0.6rem; margin-bottom: 0.3rem; }
  .cast-actor { font-size: 0.82rem; }
  .cast-credits { font-size: 0.66rem; line-height: 1.4; }
}

/* ── Soundtrack ── */
.soundtrack-intro {
  max-width: 700px;
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.tracklist {
  margin-bottom: 3rem;
  border-top: 1px solid #2a2a2a;
}

.track {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid #1e1e1e;
  transition: background 0.15s;
}
.track:hover { background: var(--mid); padding-left: 0.5rem; }

.track-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--red-hot);
  width: 2rem;
  flex-shrink: 0;
}

.track-title {
  font-size: 1rem;
  color: var(--white);
  flex: 1;
}

.track-artist {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.track-bonus .track-num { color: var(--cream); }
.track-bonus .track-title { color: var(--cream); }

.artist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.artist-tag {
  padding: 0.4rem 1rem;
  border: 1px solid #333;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  transition: border-color 0.2s, color 0.2s;
}
.artist-tag:hover { border-color: var(--red); color: var(--red-hot); }

/* ── Tour / Screenings ── */
.tour-intro {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.screening-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.screening {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--mid);
  border: 1px solid #2a2a2a;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.screening:hover { border-color: var(--red); transform: translateY(-2px); }

.screening-date {
  flex-shrink: 0;
  text-align: center;
  width: 70px;
  border-right: 1px solid #333;
  padding-right: 1.25rem;
}
.screening-month {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hot);
}
.screening-day {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1.1;
}

.screening-info { flex: 1; min-width: 0; }
.screening-venue {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.screening-loc { font-size: 0.85rem; margin-bottom: 0.3rem; }
.screening-loc a {
  color: var(--cream);
  border-bottom: 1px solid #333;
  transition: color 0.2s, border-color 0.2s;
}
.screening-loc a:hover { color: var(--red-hot); border-color: var(--red-hot); }
.screening-when {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.screening-status { flex-shrink: 0; }
.screening-soon {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid #333;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
}

.tour-more {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

/* Theater booking CTA */
.booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #2a0830, var(--mid));
  border: 1px solid var(--red);
  padding: 1.75rem 2rem;
}
.booking-cta-copy { flex: 1; min-width: 240px; }
.booking-cta-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.booking-cta-text { font-size: 0.9rem; color: var(--cream); max-width: 480px; }
.booking-cta .btn { flex-shrink: 0; white-space: nowrap; margin-top: 0; }

@media (max-width: 600px) {
  .screening { flex-wrap: wrap; gap: 1rem; }
  .screening-date {
    border-right: none;
    border-bottom: 1px solid #333;
    width: auto;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-right: 0;
    padding-bottom: 0.5rem;
  }
  .screening-info { flex-basis: 100%; }
}

/* ── Game ── */
.game-intro {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--mid);
  border: 1px solid #2a2a2a;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s;
}
.game-card:hover { border-color: var(--red); }

.game-card-icon { font-size: 2rem; }
.game-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.game-card p { font-size: 0.9rem; color: var(--cream); flex: 1; }

/* ── Press ── */
.press-links { display: flex; flex-direction: column; gap: 1.5rem; }

.press-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--mid);
  border: 1px solid #2a2a2a;
  color: var(--white);
  transition: border-color 0.2s;
}
.press-item:hover { border-color: var(--red); color: var(--white); }

.press-outlet {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-hot);
}

.press-headline {
  font-size: 1rem;
  color: var(--cream);
}

.press-item--featured {
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.press-image-wrap {
  flex-shrink: 0;
  width: 260px;
}

.press-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.press-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.press-read {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--red-hot);
  margin-top: 0.5rem;
}

@media (max-width: 700px) {
  .press-item--featured { flex-direction: column; }
  .press-image-wrap { width: 100%; }
  .press-image { height: 200px; }
  .press-item-text { padding: 1.5rem; }
}

/* ── Footer ── */
.footer {
  background: var(--black);
  border-top: 1px solid #1e1e1e;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.4em;
  color: var(--red-hot);
  margin-bottom: 0.5rem;
}

.footer-company {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-contact a:hover { color: var(--red-hot); }

.footer-booking {
  margin-top: 0.5rem;
}
.footer-booking a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-booking a:hover { color: var(--red-hot); }

.footer-ratings {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.2rem 0;
}

.rating-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid #333;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.rating-link:hover { color: var(--red-hot); border-color: var(--red-hot); }

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: #444;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-poster { width: 200px; }
  .track { flex-wrap: wrap; }
  .track-artist { width: 100%; padding-left: 3.5rem; }

  .nav-toggle { display: flex; }
  .nav ul {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #222;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav ul.open { max-height: 24rem; }
  .nav ul li { border-top: 1px solid #1c1c1c; }
  .nav ul a {
    display: block;
    padding: 1rem 2rem;
    font-size: 0.85rem;
  }
}
