/* ================= GLOBAL ================= */
:root{
  --font-display:'Cinzel', 'Times New Roman', serif;
  --font-sans:'Josefin Sans', Arial, Helvetica, sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:var(--font-sans);
  background:#000;
  color:#fff;
}

/* Universal link hover */
a{
  color:#fff;
  text-decoration:none;
  transition:all .25s ease;
}
a:hover{
  color:#ff3b3b;
}

/* 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:600;
  font-size:40px;
  letter-spacing:4px;
  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{
  font-family:var(--font-sans);
  font-weight:500;
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  padding:8px 12px;
  border-radius:3px;
}

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

.nav-cta{
  background:#c40000;
  border:1px solid #c40000;
}
.nav-cta:hover{
  background:#ff1a1a;
  color:#fff;
}

.header-social{
  display:flex;
  gap:14px;
}
.header-social i{
  opacity:.85;
  transition:.25s;
}
.header-social i:hover{
  color:#ff3b3b;
  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;
}

/* 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;
  top:-15%;
  left:0;
  right:0;
  height:130%;
  background:url("../images/bg.jpg") center/cover no-repeat;
  z-index:0;
  will-change:transform;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.2);
  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;
  animation:titleFadeIn 1.4s ease-out forwards;
  animation-delay:.3s;
}

/* Scroll-down indicator */
@keyframes scrollBounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(8px)}
}

.scroll-down{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin:30px auto 0;
  border:1px solid rgba(255,255,255,.4);
  border-radius:50%;
  color:#fff;
  font-size:15px;
  opacity:0;
  animation:titleFadeIn 1s ease-out forwards, scrollBounce 1.8s ease-in-out infinite;
  animation-delay:1.3s, 2.3s;
}

.scroll-down:hover{
  background:rgba(255,255,255,.1);
  border-color:#fff;
  color:#fff;
}

/* 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-sans);
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
}

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

.btn:hover{
  background:#fff;
  color:#000;
}

.btn-primary{
  background:#c40000;
  border-radius: 6px;
  border:none;
}
.btn-primary:hover{
  background:#ff1a1a;
  color:#fff;
}

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

/* ================= SYNOPSIS ================= */
.section-dark{background:#0e0e0e}

.synopsis-container{

  max-width:1100px;
  margin:auto;
  display:flex;
  gap:40px;
  text-align:left;
}

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

.synopsis-text p{
  line-height:1.7;
  margin-bottom:20px;
  color:#ddd;
}

.synopsis-credits{
  font-family:var(--font-sans);
  font-size:14px;
  letter-spacing:.5px;
  color:#aaa;
}
.synopsis-credits strong{
  color:#fff;
  font-weight:600;
}

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

/* ================= PRAISE ================= */
.praise-section{
  background:#0e0e0e;
  padding:100px 20px;
  text-align:center;
}

.pull-quote{
  max-width:760px;
  margin:0 auto 24px;
  font-family:var(--font-display);
  font-weight:500;
  font-size:clamp(22px,3vw,34px);
  line-height:1.5;
  color:#f2ede2;
  letter-spacing:.5px;
}

.pull-quote::before{
  content:"\201C";
  display:block;
  font-family:Georgia, 'Times New Roman', serif;
  font-size:70px;
  line-height:1;
  color:#c7a464;
  margin-bottom:6px;
}

.quote-source{
  font-family:var(--font-sans);
  font-size:13px;
  font-weight:500;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#c7a464;
}

/* ================= TRAILER ================= */
.trailer-section{
  background:#0e0e0e;
  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,.14) 0%, rgba(199,164,100,0) 70%);
  pointer-events:none;
  z-index:0;
}

.trailer-section h2{
  position:relative;
  z-index:1;
  text-shadow:0 0 30px rgba(199,164,100,.35);
}

.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 rgba(255,255,255,.12);
  box-shadow:0 30px 70px rgba(0,0,0,.7), 0 0 60px rgba(199,164,100,.35);
}

.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:#0e0e0e}

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

.platform-card{
  background:#141414;
  border:1px solid #2a2a2a;
  padding:30px;
  border-radius:6px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.platform-card:hover{
  border-color:#ff3b3b;
  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:#121212;
  border:1px solid #c40000;
  padding:25px;
}
.theater-card:hover{
  border-color:#c40000;
}
.theater-card a{
  display:inline-block;
  margin-top:10px;
  padding:10px 16px;
  border:1px solid #fff;
  font-size:12px;
  text-transform:uppercase;
}
.theater-card a:hover{
  background:#4b0000;
  border-color:#c40000;
  
}



/* ================= FOOTER ================= */
footer{
  background:#111;
  padding:60px 20px;
  border-top:1px solid #222;
  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:#ff3b3b;
  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-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.tickets-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 4px;
    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 #e5e5e5;
    border-radius: 8px;
    background: #111;
    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-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .5px;
}

.theater-city {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
}

.theater-playdate {
    font-size: 16px;
    color: #ff6600;
    margin-bottom: 15px;
    
}

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

.ticket-btn:hover {
    background: #333;
}
