/* ================= GLOBAL ================= */
:root{
  --paper:#0d0906;
  --paper-alt:#150f0a;
  --ink:#f2ede2;
  --ink-muted:#b7ab99;
  --accent:#c7a464;
  --accent-light:#e6cd94;
  --glow:rgba(199,164,100,.35);
  --hairline:rgba(242,237,226,.12);
  --font-display:'Jost', Arial, sans-serif;
  --font-label:'Inter', Arial, sans-serif;
  --font-body:'Jost', Arial, sans-serif;
}

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

/* soft film-grain + vignette, warm and quiet */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:9998;
  pointer-events:none;
  opacity:.045;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:9997;
  pointer-events:none;
  background:radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.5) 100%);
}

/* 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:500;
  font-size:46px;
  letter-spacing:6px;
  text-transform:uppercase;
  color:var(--ink);
  text-shadow:0 0 30px var(--glow);
}

/* ================= 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(13,9,6,.8),transparent);
}

.logo img{height:42px;filter:brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,.95)) drop-shadow(0 0 10px rgba(0,0,0,.85))}


.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:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:3px;
}

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

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

.header-social{
  display:flex;
  gap:14px;
}
.header-social i{
  color:var(--accent);
  opacity:.85;
  transition:.25s;
}
.header-social i:hover{
  color:#fff;
  opacity:1;
  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(13,9,6,.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 #241d14;
}

/* 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(13,9,6,.8) 0%, rgba(13,9,6,.2) 40%, rgba(13,9,6,.45) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(199,164,100,.12), transparent 60%);
  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;
  will-change:transform,opacity;
}

/* 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 26px var(--glow));
  animation:titleFadeIn 1.4s ease-out .3s forwards;
}

/* 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(0,0,0,0.7); /* transparent black */
  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: 30px;
  letter-spacing: 1px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

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

.btn:hover{
  background:var(--accent);
  color:#1a1206;
}

.btn-primary{
  background:transparent;
  border:1px solid var(--accent-light);
  color:var(--accent-light);
}
.btn-primary:hover{
  background:var(--accent-light);
  border-color:var(--accent-light);
  color:#1a1206;
  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:9px;
  margin-top:34px;
  opacity:0;
  animation:titleFadeIn 1s ease-out 1.3s forwards;
}
.scroll-cue span{
  font-family:var(--font-label);
  font-weight:500;
  font-size:11px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:var(--ink-muted);
}
.scroll-cue i{
  color:var(--accent-light);
  font-size:14px;
  text-shadow:0 0 12px var(--glow);
  animation:scrollBounce 2s ease-in-out infinite;
}
.scroll-cue:hover span{color:var(--ink)}

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

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

/* ================= 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, rgba(199,164,100,.12) 0%, rgba(199,164,100,0) 70%);
  pointer-events:none;
  z-index:0;
}

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

}

.synopsis-poster img{
  display:block;
  width:280px;
  padding:10px;
  border:1px solid var(--hairline);
  background:rgba(242,237,226,.02);
  box-shadow:0 20px 40px rgba(0,0,0,.6);
}

.synopsis-text p{
  font-family:var(--font-body);
  font-weight:300;
  font-style:normal;
  font-size:19px;
  line-height:1.8;
  margin-bottom:22px;
  color:var(--ink-muted);
}

.synopsis-credits{
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:14px;
  color:var(--ink);
  padding-top:18px;
  border-top:1px solid var(--hairline);
}
.synopsis-credits strong{
  font-family:var(--font-label);
  font-style:normal;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-size:11px;
  color:var(--accent);
}

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

/* ================= 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(199,164,100,.12) 0%, rgba(199,164,100,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:8px;
  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}
}

/* ================= PRAISE ================= */
.praise-section{
  background:var(--paper);
  position:relative;
  overflow:hidden;
}
.praise-section::before{
  content:"";
  position:absolute;
  top:-20%;
  left:50%;
  width:900px;
  height:900px;
  transform:translateX(-50%);
  background:radial-gradient(circle, rgba(199,164,100,.1) 0%, rgba(199,164,100,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:1100px;
  margin:0 auto;
  columns:2;
  column-gap:56px;
  text-align:left;
}
.praise-quote{
  position:relative;
  padding-left:36px;
  margin-bottom:40px;
  break-inside:avoid;
}
.praise-quote::before{
  content:"\201C";
  position:absolute;
  left:0;
  top:-14px;
  font-family:var(--font-display);
  font-size:60px;
  line-height:1;
  color:var(--accent);
  opacity:.55;
}
.praise-badge{
  display:inline-block;
  margin-bottom:10px;
  font-family:var(--font-label);
  font-weight:600;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#1a1206;
  background:var(--accent);
  padding:4px 10px;
  border-radius:2px;
}
.praise-quote p{
  font-family:var(--font-body);
  font-weight:300;
  font-style:normal;
  font-size:18px;
  line-height:1.7;
  color:var(--ink);
}
.praise-quote cite{
  display:block;
  margin-top:14px;
  font-family:var(--font-label);
  font-style:normal;
  font-weight:600;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--accent-light);
}
@media(max-width:800px){
  .praise-grid{columns:1}
}

/* ================= 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:#150f0a;
  border:1px solid #2a2318;
  padding:30px;
  border-radius:6px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.platform-card:hover{
  border-color:var(--accent);
  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:#150f0a;
  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:#1a1206;
}



/* ================= 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:#1a1206;
  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: 500;
    font-size: 42px;
    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 #241d14;
    border-radius: 8px;
    background: #150f0a;
    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-distance {
    font-size: 12px;
    color: var(--ink-muted);
    font-style: italic;
    margin-top: 4px;
}

.theater-playdate {
    font-family: var(--font-label);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    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: 1px solid var(--accent);
    border-radius: 6px;
    background: transparent;
    color: var(--accent-light);
    text-decoration: none;
    transition: all 0.2s ease;
}

.ticket-btn:hover {
    background: var(--accent);
    color: #1a1206;
}

.theater-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 30px;
}

.theater-nav-btn {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font: inherit;
    line-height: normal;
    box-shadow: none;

    padding: 8px 16px;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    background: transparent;
    color: var(--ink-muted);
    border: 1px solid var(--hairline);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theater-nav-btn:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.theater-nav-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #1a1206;
}

/* Respect reduced-motion preference: disable the hero parallax drift
   and the 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;
  }
}
