/* ================= GLOBAL ================= */
:root{
  --paper:#17130f;
  --paper-alt:#1c1712;
  --ink:#eee3d0;
  --ink-muted:#cbb89a;
  --accent:#a8622a;
  --accent-light:#d98a3d;
  --hairline:rgba(238,227,208,.12);
  --font-display:'Special Elite', 'Courier New', monospace;
  --font-body:'Vollkorn', Georgia, serif;
}

*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--paper);
  color:var(--ink);
}

/* 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-size:40px;
  letter-spacing:0x;
  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(15,11,8,.8),transparent);
}

.logo img{height:42px}


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

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

.nav-links a:hover{
  background:rgba(238,227,208,.08);
}

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

.header-social{
  display:flex;
  gap:14px;
}
.header-social i{
  opacity:.85;
  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(15,11,8,.94);
    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 #2b2319;
}

/* 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:rgba(20,14,8,.35);
  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;
  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:var(--font-body);
  font-style:italic;
  font-size:17px;
  line-height:1.4;
  color:var(--ink);
  text-shadow:0 2px 12px rgba(0,0,0,.85);
  letter-spacing:.2px;
}
.hero-quotes cite{
  font-family:var(--font-display);
  font-style:normal;
  font-weight:400;
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--accent-light);
  margin-left:8px;
}
.hero-quotes cite a{
  color:inherit;
}
.hero-quotes cite a:hover{
  color:var(--ink);
}

@media(max-width:600px){
  .hero-quotes p{font-size:14px}
  .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(--ink);
  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(--ink);
}

/* MOBILE NAV PANEL */
#mobileNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(20,14,8,0.85); /* transparent warm dark */
  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: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
}

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

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

.btn-primary{
  background:var(--accent);
  border:none;
}
.btn-primary:hover{
  background:var(--accent-light);
  color:var(--paper);
}

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

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

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

/* faint amber 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(168,98,42,.16) 0%, rgba(168,98,42,0) 70%);
  pointer-events:none;
  z-index:0;
}

#synopsis h2{
  position:relative;
  z-index:1;
  font-family:var(--font-display);
  font-weight:400;
  font-size:36px;
  letter-spacing:8px;
  margin-bottom:18px;
  color:var(--ink);
  text-shadow:0 0 30px rgba(168,98,42,.35);
}

.section-divider{
  position:relative;
  z-index:1;
  width:64px;
  height:1px;
  margin:0 auto 60px;
  background:linear-gradient(90deg, transparent, var(--accent), transparent);
}
.section-divider::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:7px;
  height:7px;
  background:var(--accent);
  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:1px solid var(--accent);
  opacity:.8;
}
.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(238,227,208,.12);
  box-shadow:0 25px 60px rgba(0,0,0,.7);
  transition:transform .4s ease, box-shadow .4s ease;
}
.synopsis-poster:hover img{
  transform:translateY(-6px);
  box-shadow:0 35px 70px rgba(0,0,0,.8), 0 0 45px rgba(168,98,42,.3);
}

.synopsis-text h1{
  position:relative;
  display:inline-block;
  font-family:var(--font-display);
  font-weight:400;
  font-size:30px;
  letter-spacing:2px;
  color:var(--ink);
  margin-bottom:28px;
}
.synopsis-text h1::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-12px;
  width:48px;
  height:2px;
  background:var(--accent);
}

.synopsis-text p{
  font-family:var(--font-body);
  font-size:20px;
  line-height:1.85;
  letter-spacing:.2px;
  margin-bottom:28px;
  color:var(--ink-muted);
}
.synopsis-text p:first-of-type::first-letter{
  float:left;
  font-family:var(--font-display);
  font-size:56px;
  line-height:.78;
  padding:4px 10px 0 0;
  color:var(--accent);
}

.synopsis-credits{
  display:flex;
  flex-direction:column;
  gap:12px;
  padding-top:24px;
  border-top:1px solid var(--hairline);
}
.synopsis-credits p{
  display:flex;
  align-items:baseline;
  gap:12px;
  font-family:var(--font-body);
  font-size:17px;
  letter-spacing:.2px;
  color:var(--ink-muted);
}
.synopsis-credits strong{
  flex-shrink:0;
  min-width:130px;
  font-family:var(--font-display);
  font-weight:400;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--accent-light);
}

@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;
}
.trailer-section iframe{
  width:100%;
  height:100%;
  border:0;
}

/* ================= 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:#1f1913;
  border:1px solid #332a1e;
  padding:30px;
  border-radius:6px;
  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:#1a1510;
  border:1px solid var(--accent);
  padding:25px;
}
.theater-card:hover{
  border-color:var(--accent);
}
.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:#3f2a15;
  border-color:var(--accent);

}



/* ================= FOOTER ================= */
footer{
  background:var(--paper-alt);
  padding:60px 20px;
  border-top:1px solid #2b2319;
  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(--accent-light);
  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-size: 40px;
    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 #3a3226;
    border-radius: 8px;
    background: #1a1510;
    transition: box-shadow 0.2s ease;
}

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

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

.theater-name {
    font-size: 16px;
    font-weight: 600;
}

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

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

}

.ticket-btn {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    background: var(--accent);
    color: var(--ink);
    text-decoration: none;
    transition: background 0.2s ease;
}

.ticket-btn:hover {
    background: #2b241c;
}
