/* =============================================================
   BUKOWSKI: BORN INTO THIS — poster-matched palette
   Duotone gold/amber + burnt red-orange over black, bold
   condensed display type for headings, marker-script accents,
   pulled straight off the one-sheet.
   ============================================================= */
:root{
  --gold:#f0b400;      /* poster highlight yellow */
  --amber:#d99a1a;     /* secondary warm tone */
  --red:#c1272d;       /* poster shadow red-orange */
  --red-bright:#e8451f;/* hover / brighter red-orange */
  --ink:#0a0705;       /* warm near-black background */
  --ink-soft:#120d09;  /* slightly lifted panel black */
  --cream:#f4ecd8;     /* warm off-white body text */
  --cream-dim:#d8cdb8; /* dimmer body text */
}

/* ================= GLOBAL ================= */
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'Oswald', Arial, Helvetica, sans-serif;
  background:var(--ink);
  color:var(--cream);
}

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

/* 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:'Oswald', Arial, sans-serif;
  font-weight:700;
  font-size:40px;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* ================= 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(0,0,0,.75),transparent);
}

.logo img{height:42px}


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

.nav-links a{
  position:relative;
  font-family:'Oswald', Arial, sans-serif;
  font-weight:600;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:3px;
}

.nav-links a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:2px;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
}

.nav-links a:not(.nav-cta):hover{
  background:rgba(10,7,5,.8);
  color:var(--gold);
  box-shadow:0 2px 10px rgba(0,0,0,.4);
}
.nav-links a:not(.nav-cta):hover::after{
  transform:scaleX(1);
}

.nav-links a.nav-cta{
  background:var(--red);
  border:2px solid var(--red);
  padding:8px 16px;
}
.nav-links a.nav-cta:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#000;
}

.header-social{
  display:flex;
  gap:14px;
}
.header-social i{
  opacity:.85;
  transition:.25s;
}
.header-social i:hover{
  color:var(--gold);
  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(0,0,0,.92);
    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 #201207;
}

/* 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;
}

/* 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:
    radial-gradient(ellipse 60% 45% at 50% 78%, rgba(10,7,5,.05) 0%, rgba(10,7,5,.3) 100%),
    linear-gradient(to bottom, rgba(10,7,5,.04) 0%, rgba(10,7,5,.08) 45%, rgba(10,7,5,.4) 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;
}

/* Warm glowing plate behind the title so the poster's black wordmark
   pops no matter what's happening in the photo behind it */
.hero-content::before{
  content:"";
  position:absolute;
  left:50%;
  top:6%;
  transform:translate(-50%,0);
  width:min(115%, 780px);
  height:78%;
  min-height:260px;
  background:radial-gradient(ellipse at center, rgba(244,200,60,.85) 0%, rgba(240,180,0,.5) 32%, rgba(240,180,0,.16) 58%, rgba(240,180,0,0) 78%);
  filter:blur(6px);
  z-index:-1;
  pointer-events:none;
}

/* 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{
  position:relative;
  width:84%;
  max-width:640px;
  margin-bottom:25px;
  opacity:0;
  filter:
    drop-shadow(0 0 3px rgba(244,236,216,.95))
    drop-shadow(0 0 22px rgba(240,180,0,.65))
    drop-shadow(0 12px 30px rgba(0,0,0,.55));
  animation:titleFadeIn 1.4s ease-out forwards;
  animation-delay:.3s;
}

/* Press quotes above the title */
.hero-quotes{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-bottom:30px;
  opacity:0;
  animation:titleFadeIn 1.2s ease-out forwards;
  animation-delay:.1s;
}
.hero-quotes p{
  font-family:'Permanent Marker', 'Segoe Script', cursive;
  font-style:normal;
  font-size:19px;
  line-height:1.5;
  color:var(--cream);
  text-shadow:0 2px 12px rgba(0,0,0,.85);
  letter-spacing:.2px;
}
.hero-quotes cite{
  font-family:'Oswald', sans-serif;
  font-style:normal;
  font-weight:600;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
  margin-left:8px;
}
.hero-quotes cite a{
  color:inherit;
}
.hero-quotes cite a:hover{
  color:#fff;
}

@media(max-width:600px){
  .hero-quotes p{font-size:15px}
  .hero-quotes{gap:6px;margin-bottom:20px}
}

/* 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: var(--gold);
  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: var(--gold);
}

/* MOBILE NAV PANEL */
#mobileNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(10,7,5,0.94);
  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: 'Oswald', Arial, sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
}

.btn{
  display:inline-block;
  padding:14px 26px;
  margin:6px;
  border:2px solid var(--gold);
  font-family:'Oswald', Arial, sans-serif;
  font-weight:600;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  opacity:0;
  animation:titleFadeIn 1s ease-out forwards;
  animation-delay:1s;
}

.btn:hover{
  background:var(--gold);
  color:#000;
}

.btn-primary{
  background:var(--red);
  border:2px solid var(--red);
}
.btn-primary:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:#000;
}

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

/* ================= SYNOPSIS ================= */
.section-dark{background:var(--ink-soft)}

#synopsis{
  position:relative;
  overflow:hidden;
  padding:110px 20px;
}

/* faint amber/red glow behind the section for atmosphere */
#synopsis::before{
  content:"";
  position:absolute;
  top:-25%;
  left:50%;
  width:900px;
  height:900px;
  transform:translateX(-50%);
  background:radial-gradient(circle, rgba(240,180,0,.14) 0%, rgba(193,39,45,.08) 45%, rgba(0,0,0,0) 70%);
  pointer-events:none;
  z-index:0;
}

#synopsis h2{
  position:relative;
  z-index:1;
  font-family:'Oswald', Arial, sans-serif;
  font-weight:700;
  font-size:38px;
  letter-spacing:6px;
  margin-bottom:18px;
  color:var(--cream);
  text-shadow:0 0 30px rgba(193,39,45,.4);
}

.section-divider{
  position:relative;
  z-index:1;
  width:64px;
  height:2px;
  margin:0 auto 60px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:7px;
  height:7px;
  background:var(--red);
  transform:translate(-50%,-50%) rotate(45deg);
}

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

.synopsis-poster{
  position:relative;
  flex-shrink:0;
  padding:16px;
}
.synopsis-poster::before,
.synopsis-poster::after{
  content:"";
  position:absolute;
  width:26px;
  height:26px;
  border:2px solid var(--gold);
  opacity:.9;
}
.synopsis-poster::before{top:0;left:0;border-right:0;border-bottom:0}
.synopsis-poster::after{bottom:0;right:0;border-left:0;border-top:0}

.synopsis-poster img{
  display:block;
  width:290px;
  border:1px solid rgba(240,180,0,.18);
  box-shadow:0 25px 60px rgba(0,0,0,.75);
  transition:transform .4s ease, box-shadow .4s ease;
}
.synopsis-poster:hover img{
  transform:translateY(-6px);
  box-shadow:0 35px 70px rgba(0,0,0,.85), 0 0 45px rgba(240,180,0,.3);
}

.synopsis-text h1{
  position:relative;
  display:inline-block;
  font-family:'Oswald', Arial, sans-serif;
  font-weight:700;
  font-size:34px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--cream);
  margin-bottom:28px;
}
.synopsis-text h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-12px;
  width:48px;
  height:3px;
  background:var(--red);
}

.synopsis-text p{
  font-family:Georgia, 'Times New Roman', serif;
  font-size:19px;
  line-height:1.85;
  letter-spacing:.2px;
  margin-bottom:28px;
  color:var(--cream-dim);
}
.synopsis-text p:first-of-type::first-letter{
  float:left;
  font-family:'Oswald', sans-serif;
  font-weight:700;
  font-size:60px;
  line-height:.78;
  padding:4px 10px 0 0;
  color:var(--gold);
}

.synopsis-credits{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:24px;
  border-top:1px solid rgba(240,180,0,.18);
}
.synopsis-credits p{
  display:flex;
  align-items:baseline;
  gap:12px;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:17px;
  letter-spacing:.2px;
  color:var(--cream-dim);
}
.synopsis-credits strong{
  flex-shrink:0;
  min-width:130px;
  font-family:'Oswald', sans-serif;
  font-weight:600;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold);
}

@media(max-width:900px){
  #synopsis{padding:90px 20px}
  .synopsis-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .synopsis-poster img{width:230px}
  .synopsis-text h1::after{left:50%;transform:translateX(-50%)}
  .synopsis-text p:first-of-type::first-letter{
    float:none;
    font-size:inherit;
    color:inherit;
    padding:0;
  }
  .synopsis-credits{align-items:center}
  .synopsis-credits p{flex-direction:column;gap:4px}
  .synopsis-credits strong{min-width:auto}
}

/* ================= TRAILER ================= */
.trailer-section{
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#000;
}
.trailer-section iframe{
  width:100%;
  height:100%;
  border:0;
}

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

.platform-card{
  background:#181008;
  border:1px solid #332211;
  padding:30px;
  border-radius:6px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.platform-card:hover{
  border-color:var(--gold);
  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;
}

/* ================= FOOTER ================= */
footer{
  background:var(--ink-soft);
  padding:60px 20px;
  border-top:1px solid #241608;
  text-align:center;
}

.footer-logo img{height:40px;margin-bottom:25px}

.footer-social{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-bottom:25px;
}
.footer-social i:hover{
  color:var(--gold);
  transform:scale(1.15);
}

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

.footer-legal{
  font-size:12px;
  opacity:.7;
}
footer a:hover{
  text-decoration:underline;
}

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

.tickets-title {
    font-family:'Oswald', Arial, sans-serif;
    font-weight:700;
    font-size: 40px;
    letter-spacing:2px;
    text-transform:uppercase;
    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(--red);
    border-radius: 8px;
    background: #14100a;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

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

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

.theater-name {
    font-family:'Oswald', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
}

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

.theater-playdate {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 15px;

}

.ticket-btn {
    padding: 10px 16px;
    font-family:'Oswald', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing:.5px;
    text-transform:uppercase;
    border: none;
    border-radius: 6px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
}

.ticket-btn:hover {
    background: var(--gold);
    color:#000;
}
