/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #c9a84c;
  --gold-lt: #f0d080;
  --dark:    #08080f;
  --dark2:   #111118;
  --dark3:   #18181f;
  --red:     #b22222;
  --red-lt:  #d93232;
  --white:   #ffffff;
  --gray:    #9999aa;
  --border:  #252535;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; }

/* ── TOP BAR ── */
.topbar {
  background: var(--red);
  padding: 7px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--white); }
.topbar a:hover { text-decoration: underline; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ── HEADER ── */
.header {
  background: var(--dark2);
  border-bottom: 2px solid var(--gold);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { height: 54px; width: auto; object-fit: contain; }
.logo-text .brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--gold);
  line-height: 1.1;
}
.logo-text .sub {
  font-size: 10px;
  letter-spacing: 3.5px;
  color: var(--gray);
  text-transform: uppercase;
}
.book-btn {
  background: var(--red);
  color: var(--white);
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.book-btn:hover { background: var(--red-lt); }

/* ── SCROLL NAV ── */
.scroll-nav {
  background: var(--dark3);
  border-bottom: 1px solid var(--border);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 82px;
  z-index: 100;
}
.scroll-nav::-webkit-scrollbar { display: none; }
.nav-link {
  color: var(--gray);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 30px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }

/* alternate section background */
.section-alt { background: var(--dark3); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(5,5,12,0.92) 35%, rgba(5,5,12,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 680px;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.hero-content h1 .gold { color: var(--gold); }
.hero-content .lead {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--red-lt); }

.btn-ghost {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 11px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--gold); color: var(--dark); }

.hero-stats { display: flex; gap: 42px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 28px;
  left: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--gold); width: 26px; border-radius: 4px; }

/* Tonight panel */
.tonight-panel {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(8,8,15,0.88);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 26px;
  width: 310px;
  backdrop-filter: blur(12px);
}
.panel-head {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}
.panel-sub {
  font-size: 11.5px;
  color: var(--gray);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.show-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.show-row:last-of-type { border-bottom: none; }
.show-row .mv { font-size: 13.5px; font-weight: 600; }
.show-row .gn { font-size: 11px; color: var(--gray); margin-top: 2px; }
.chip {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── SECTION COMMONS ── */
.section { padding: 76px 60px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-head .desc {
  color: var(--gray);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── NOW SHOWING ── */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
}
.movie-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.movie-card img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.mc-body { padding: 16px; }
.mc-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.mc-genre { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.mc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  background: var(--dark3);
  color: var(--gray);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.show-times { display: flex; gap: 6px; flex-wrap: wrap; }
.time-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.time-btn:hover { background: var(--gold); color: var(--dark); }

/* ── GALLERY ── */
.gal-cat { margin-bottom: 52px; }
.gal-cat:last-child { margin-bottom: 0; }

.gal-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 12px;
}

/* shared cell styles */
.gi {
  overflow: hidden;
  border-radius: 7px;
  cursor: pointer;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gi:hover img { transform: scale(1.06); }

/* EXTERIOR: 2-col, 2-row grid
   [img4 wide] [img6 portrait — spans 2 rows]
   [img5 wide]                                  */
.gal-exterior {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 10px;
}
.gi-ext-main { grid-column: 1; grid-row: 1; }
.gi-ext-side { grid-column: 2; grid-row: 1 / 3; }
.gi-ext-bot  { grid-column: 1; grid-row: 2; }

/* LOBBY: 3-col, 2-row grid
   [img9 landscape] [img7 portrait] [img8 portrait]
   [img1 landscape] [img2 portrait] [img11 portrait] */
.gal-lobby {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}
.gal-lobby .gi:nth-child(1) { grid-column: 1; grid-row: 1; }
.gal-lobby .gi:nth-child(2) { grid-column: 2; grid-row: 1; }
.gal-lobby .gi:nth-child(3) { grid-column: 3; grid-row: 1; }
.gal-lobby .gi:nth-child(4) { grid-column: 1; grid-row: 2; }
.gal-lobby .gi:nth-child(5) { grid-column: 2; grid-row: 2; }
.gal-lobby .gi:nth-child(6) { grid-column: 3; grid-row: 2; }

/* HALLS: 3-col, 1-row grid
   [img3 landscape wide] [img10 portrait] [img12 portrait] */
.gal-halls {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .gal-exterior {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px;
  }
  .gal-lobby {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gal-lobby .gi:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gal-lobby .gi:nth-child(2) { grid-column: 1;     grid-row: 2; }
  .gal-lobby .gi:nth-child(3) { grid-column: 2;     grid-row: 2; }
  .gal-lobby .gi:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .gal-lobby .gi:nth-child(5) { display: none; }
  .gal-lobby .gi:nth-child(6) { display: none; }
  .gal-halls {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .gal-halls .gi:nth-child(1) { grid-column: 1 / 3; }
}
@media (max-width: 600px) {
  .gal-exterior {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 260px 160px;
  }
  .gi-ext-main { grid-column: 1; grid-row: 1; }
  .gi-ext-side { grid-column: 1; grid-row: 2; }
  .gi-ext-bot  { grid-column: 1; grid-row: 3; }
  .gal-lobby {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }
  .gal-lobby .gi:nth-child(1) { grid-column: 1; grid-row: 1; }
  .gal-lobby .gi:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gal-lobby .gi:nth-child(3) { grid-column: 1; grid-row: 3; }
  .gal-lobby .gi:nth-child(4) { grid-column: 1; grid-row: 4; }
  .gal-lobby .gi:nth-child(5) { display: none; }
  .gal-lobby .gi:nth-child(6) { display: none; }
  .gal-halls {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gal-halls .gi:nth-child(1) { grid-column: 1; }
}

/* ── EXPERIENCE ── */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.exp-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.exp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.exp-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  transition: border-color 0.2s;
}
.exp-card:hover { border-color: var(--gold); }
.exp-icon { font-size: 28px; margin-bottom: 10px; }
.exp-card h3 { font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 7px; }
.exp-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.exp-interior {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 50px;
}
.exp-interior img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ── CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info .sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 2px;
  margin-bottom: 32px;
  line-height: 1.05;
}
.info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-lbl {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.info-row p,
.info-row a {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}
.info-row a:hover { color: var(--gold); }
.contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.map-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.map-box iframe { width: 100%; height: 340px; border: none; display: block; }
.quick-info { padding: 20px 24px; }
.q-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.q-row:last-child { border-bottom: none; }
.q-row span:first-child { color: var(--gray); }
.q-row span:last-child { font-weight: 600; }

/* ── FOOTER ── */
.footer {
  background: var(--dark2);
  border-top: 2px solid var(--gold);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .f-logo img { height: 44px; }
.footer-brand .f-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gold);
}
.footer-brand p { font-size: 13.5px; color: var(--gray); line-height: 1.75; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { color: var(--gray); font-size: 13.5px; line-height: 1.7; }
.footer-bottom {
  background: var(--dark);
  text-align: center;
  padding: 16px 20px;
  font-size: 12.5px;
  color: var(--gray);
  border-top: 1px solid var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tonight-panel { width: 270px; right: 30px; }
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .topbar { padding: 6px 20px; font-size: 11.5px; }
  .header { padding: 12px 20px; }
  .section { padding: 50px 20px; }
  .hero-content { padding: 0 24px; }
  .tonight-panel { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item.wide { grid-column: span 2; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-interior { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; padding: 36px 20px; gap: 32px; }
  .slide-dots { left: 24px; }
}
@media (max-width: 600px) {
  .logo-text .brand { font-size: 18px; }
  .logo-text .sub { display: none; }
  .hero-stats { gap: 22px; }
  .tab-btn { padding: 14px 16px; font-size: 11px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .g-item.wide { grid-column: span 1; }
  .g-item.wide img, .g-item img { height: 160px; }
  .exp-features { grid-template-columns: 1fr; }
}
