/* ================= GLOBAL ================= */
:root{
  /* Palette sampled from the Headhunters key art: stark black/white duotone + the poster's exact red (#ec1d25) */
  --paper:#050505;
  --paper-alt:#0d0d0d;
  --ink:#f5f5f5;
  --ink-muted:#9a9a9a;
  --accent:#ec1d25;
  --accent-light:#ff3b3f;
  --glow:rgba(236,29,37,.35);
  --frostglow:rgba(255,255,255,.10);
  --hairline:rgba(255,255,255,.12);
  --font-display:'Bebas Neue', Arial Narrow, sans-serif;
  --font-label:'Oswald', Arial Narrow, sans-serif;
  --font-body:'Inter', Arial, Helvetica, sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:var(--font-body);
  background:var(--paper);
  color:var(--ink);
  position:relative;
}

/* Universal link hover */
a{
  color:var(--ink);
  text-decoration:none;
  transition:all .25s ease;
}
a:hover{
  color:var(--accent-light);
}

/* Universal button hover */
button,
.btn{
  cursor:pointer;
  transition:all .25s ease;
}
.btn:hover,
button:hover{
  transform:translateY(-2px);
  box-shadow:0 2px 3px rgba(0,0,0,0);
}

section{padding:80px 20px;text-align:center}

h2{
  margin-bottom:40px;
  font-family:var(--font-display);
  font-weight:400;
  font-size:48px;
  letter-spacing:6px;
  text-transform:uppercase;
  color:var(--ink);
  text-shadow:0 0 24px var(--frostglow);
}

h2::after{
  content:"";
  display:block;
  width:64px;
  height:4px;
  margin:18px auto 0;
  background:var(--accent);
}

/* ================= HEADER ================= */
header{
  position:absolute;
  top:0;
  width:100%;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  background:linear-gradient(to bottom,rgba(10,14,19,.8),transparent);
}

.logo img{height:42px;filter:brightness(0) invert(1)}


.nav-links{
  list-style:none;
  display:flex;
  gap:16px;
  align-items:center;
}

.nav-links a{
  font-family:var(--font-label);
  font-weight:500;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:3px;
}

.nav-links a:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}

.nav-cta{
  background:var(--accent);
  border:1px solid var(--accent);
}
.nav-cta:hover{
  background:var(--accent-light);
  border-color:var(--accent-light);
  color:#fff;
}

.header-social{
  display:flex;
  gap:14px;
}
.header-social i{
  color:var(--ink-muted);
  opacity:.9;
  transition:.25s;
}
.header-social i:hover{
  color:var(--accent-light);
  transform:scale(1.15);
}

.hamburger{
  display:none;
  font-size:24px;
  cursor:pointer;
}

@media(max-width:1024px){
  .hamburger{display:block}
  .nav-links{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    flex-direction:column;
    background:rgba(10,14,19,.95);
    padding:30px 0;
    opacity:0;
    pointer-events:none;
    transition:.3s;
  }
  .nav-links.open{
    opacity:1;
    pointer-events:auto;
  }
  .header-social{display:none}
}

/* ================= HERO ================= */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  border-bottom:1px solid #1c242c;
}

/* Optional video */
.hero-video{
  position:absolute;
  top:50%;
  left:50%;
  min-width:100%;
  min-height:100%;
  transform:translate(-50%,-50%);
  object-fit:cover;
  z-index:0;
  will-change:transform;
}

/* Image fallback */
.hero-image{
  position:absolute;
  inset:0;
  background:url("../images/bg.jpg") center/cover no-repeat;
  z-index:0;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(0deg, rgba(10,14,19,.75) 0%, rgba(10,14,19,.15) 40%, rgba(10,14,19,.35) 100%);
  z-index:1;
}


/* Content lower center */
.hero-content{
  position:absolute;
  left:50%;
  bottom:12%;
  transform:translateX(-50%);
  z-index:2;
  text-align:center;
  width:100%;
  padding:0 20px;
}

/* Title animation */
@keyframes titleFadeIn{
  0%{opacity:0;transform:translateY(40px) scale(.96)}
  60%{opacity:1;transform:translateY(-4px) scale(1.02)}
  100%{opacity:1;transform:translateY(0) scale(1)}
}

.title-image{
  width:80%;
  max-width:560px;
  margin-bottom:25px;
  opacity:0;
  filter:drop-shadow(0 0 24px rgba(0,0,0,.6));
  animation:titleFadeIn 1.4s ease-out forwards;
  animation-delay:.3s;
}

/* HAMBURGER BUTTON */
#hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

#hamburger .bar {
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
}

/* Hide hamburger and mobile nav by default (desktop) */
#hamburger {
  display: none;
}

#mobileNav {
  display: none;
}

@media (max-width: 1024px) {

  /* Show hamburger */
  #hamburger {
    display: flex;
  }

  /* Enable mobile nav overlay */
  #mobileNav {
    display: block;
  }

  /* Optional: hide desktop navigation */
  .main-nav,
  .desktop-nav {
    display: none !important;
  }
}

#hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 30px;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

#hamburger .bar {
  height: 3px;
  width: 100%;
  background: #fff;
}

/* MOBILE NAV PANEL */
#mobileNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(10,14,19,0.85);
  overflow: hidden;
  transition: height 0.3s ease;
  z-index: 9999;
}

#mobileNav.open {
  height: 100%;
}

.mobile-nav-list {
  list-style: none;
  padding-top: 120px;
  text-align: center;
  margin: 0;
}

.mobile-nav-list li {
  margin: 20px 0;
}

.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
}

.btn{
  display:inline-block;
  padding:14px 26px;
  margin:6px;
  border:1px solid #fff;
  font-family:var(--font-label);
  font-weight:500;
  letter-spacing:1px;
  font-size:13px;
  text-transform:uppercase;
  opacity:0;
  animation:titleFadeIn 1s ease-out forwards;
  animation-delay:1s;
}

.btn:hover{
  background:#fff;
  color:var(--paper);
}

.btn-primary{
  background:var(--accent);
  border:1px solid var(--accent);
}
.btn-primary:hover{
  background:var(--accent-light);
  border-color:var(--accent-light);
  color:#fff;
  box-shadow:0 0 22px var(--glow);
}

@media(max-width:768px){
  .hero-content{bottom:8%}
}

/* scroll-down cue beneath the hero buttons */
.scroll-cue{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-top:32px;
  opacity:0;
  animation:titleFadeIn 1s ease-out 1.3s forwards;
}
.scroll-cue span{
  font-family:var(--font-label);
  font-weight:500;
  font-size:12px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 1px 4px rgba(0,0,0,.6);
}
.scroll-cue i{
  color:var(--accent-light);
  font-size:16px;
  text-shadow:0 1px 6px rgba(0,0,0,.6);
  animation:scrollBounce 1.8s ease-in-out infinite;
}
.scroll-cue:hover span{color:var(--accent-light)}

@keyframes scrollBounce{
  0%,100%{transform:translateY(0);opacity:.6}
  50%{transform:translateY(7px);opacity:1}
}

@media(max-width:768px){
  .scroll-cue{margin-top:20px}
}

/* respect reduced-motion: no parallax drift and no bouncing scroll cue
   (JS also checks this before animating) */
@media (prefers-reduced-motion: reduce){
  .hero-video,
  .hero-content{
    transform:none !important;
  }
  .scroll-cue i{
    animation:none;
  }
}

/* ================= SYNOPSIS ================= */
.section-dark{background:var(--paper-alt)}

#synopsis{position:relative;overflow:hidden}
#synopsis::before{
  content:"";
  position:absolute;
  top:-20%;
  left:50%;
  width:900px;
  height:900px;
  transform:translateX(-50%);
  background:radial-gradient(circle, var(--frostglow) 0%, rgba(148,180,198,0) 70%);
  pointer-events:none;
  z-index:0;
}

.synopsis-container{
  position:relative;
  z-index:1;
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:40px;
  text-align:left;
}

.synopsis-poster img{
  width:280px;
  border:1px solid var(--hairline);
  box-shadow:0 20px 40px rgba(0,0,0,.6);
}

.synopsis-text p{
  line-height:1.7;
  margin-bottom:20px;
  color:var(--ink-muted);
}

.synopsis-credits{
  font-size:14px;
  color:var(--ink-muted);
}
.synopsis-credits strong{
  font-family:var(--font-label);
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--accent-light);
}

@media(max-width:900px){
  .synopsis-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}

/* ================= PRAISE ================= */
.praise-section{
  background:var(--paper);
  padding:110px 20px;
  position:relative;
  overflow:hidden;
  border-top:1px solid var(--accent);
  border-bottom:1px solid var(--accent);
}
.praise-section::before{
  content:"";
  position:absolute;
  top:-20%;
  left:50%;
  width:900px;
  height:900px;
  transform:translateX(-50%);
  background:radial-gradient(circle, var(--frostglow) 0%, rgba(255,255,255,0) 70%);
  pointer-events:none;
  z-index:0;
}
.praise-section h2{
  position:relative;
  z-index:1;
}

.praise-grid{
  position:relative;
  z-index:1;
  max-width:900px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.praise-grid::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  width:1px;
  background:var(--hairline);
}

.praise-quote{
  padding:0 10px;
}
.praise-quote i{
  display:block;
  font-size:26px;
  color:var(--accent);
  opacity:.55;
  margin-bottom:18px;
}
.praise-quote p{
  font-family:var(--font-label);
  font-weight:600;
  font-size:26px;
  line-height:1.3;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--ink);
  margin-bottom:16px;
}
.praise-quote cite{
  display:block;
  font-style:normal;
  font-family:var(--font-label);
  font-weight:500;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent-light);
}
.praise-quote cite::before{
  content:"\2014  ";
}

@media(max-width:768px){
  .praise-section{padding:80px 16px}
  .praise-grid{grid-template-columns:1fr;gap:44px}
  .praise-grid::before{display:none}
}

/* ================= TRAILER ================= */
.trailer-section{
  background:var(--paper-alt);
  padding:110px 20px;
  position:relative;
  overflow:hidden;
}
.trailer-section::before{
  content:"";
  position:absolute;
  top:-20%;
  left:50%;
  width:900px;
  height:900px;
  transform:translateX(-50%);
  background:radial-gradient(circle, rgba(236,29,37,.14) 0%, rgba(236,29,37,0) 70%);
  pointer-events:none;
  z-index:0;
}
.trailer-section h2{
  position:relative;
  z-index:1;
}
.trailer-frame{
  position:relative;
  z-index:1;
  max-width:960px;
  margin:0 auto;
  aspect-ratio:16/9;
  border-radius:2px;
  overflow:hidden;
  border:1px solid var(--hairline);
  box-shadow:0 30px 70px rgba(0,0,0,.7), 0 0 60px var(--glow);
}
.trailer-section iframe{
  display:block;
  width:100%;
  height:100%;
  border:0;
}
@media(max-width:640px){
  .trailer-section{padding:80px 16px}
}

/* ================= WATCH AT HOME ================= */
.section-dark{background:var(--paper)}

.platform-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:30px;
  max-width:1100px;
  margin:auto;
}

.platform-card{
  background:var(--paper-alt);
  border:1px solid var(--hairline);
  padding:30px;
  border-radius:2px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.platform-card:hover{
  border-color:var(--accent-light);
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.6);
}
.platform-card img{
  max-width:120px;
  max-height:60px;
}

/* ================= THEATERS ================= */
.theater-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.theater-card{
  background:var(--paper-alt);
  border:1px solid var(--accent);
  padding:25px;
}
.theater-card:hover{
  border-color:var(--accent-light);
}
.theater-card a{
  display:inline-block;
  margin-top:10px;
  padding:10px 16px;
  border:1px solid var(--ink);
  font-size:12px;
  text-transform:uppercase;
}
.theater-card a:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}



/* ================= FOOTER ================= */
footer{
  background:var(--paper-alt);
  padding:56px 20px 44px;
  border-top:1px solid var(--hairline);
  text-align:center;
}

.footer-logo img{height:40px;margin-bottom:28px;filter:brightness(0) invert(1)}

.footer-social{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:32px;
}
.footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid var(--hairline);
  color:var(--ink-muted);
  transition:.25s ease;
}
.footer-social a:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
  transform:translateY(-2px);
}
.footer-social i{
  font-size:14px;
}

.footer-rating img{
  height:65px;
  margin:20px 0;
}

.footer-legal{
  font-size:12px;
  color:var(--ink-muted);
  max-width:640px;
  margin:0 auto;
}
.footer-copyright{
  margin-bottom:10px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:6px 0;
}
.footer-links a{
  padding:0 10px;
  position:relative;
}
.footer-links a:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:3px;
  height:3px;
  border-radius:50%;
  background:var(--ink-muted);
  opacity:.6;
}

footer a{
  color:var(--ink);
  text-decoration:none;
}
footer a:hover{
  color:var(--accent);
}
.footer-copyright a:hover{
  text-decoration:underline;
}

/* ================= TICKETS ================= */
.tickets-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.tickets-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 46px;
    letter-spacing: 5px;
    margin-bottom: 40px;
    text-align: center;
}

.theaters-grid {
    display: grid;
    gap: 14px;
}

.theater-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--hairline);
    border-radius: 2px;
    background: var(--paper-alt);
    transition: box-shadow 0.2s ease;
}

.theater-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.theater-info {
    display: flex;
    flex-direction: column;
}

.theater-name {
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 600;
}

.theater-city {
    font-size: 14px;
    color: var(--ink-muted);
    margin-top: 2px;
}

.theater-playdate {
    font-family: var(--font-label);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 15px;
}

.ticket-btn {
    padding: 10px 16px;
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.ticket-btn:hover {
    background: var(--accent-light);
}

/* Visually hidden but accessible/SEO-crawlable text (added for SEO H1) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
