/* ============================================================
   NOIR & VELVET CINEMA — style.css
   Fonts: Poiret One (headings) · Quicksand (body)
   Colors: #0a0a0a bg · #DBBB76 gold · #D7D3CA beige · #9B171B red
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poiret+One&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold:   #DBBB76;
  --gold2:  #866D36;
  --beige:  #D7D3CA;
  --red:    #9B171B;
  --bg:     #0a0a0a;
  --bg2:    #111111;
  --font-h: "Poiret One", sans-serif;
  --font-b: "Quicksand", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  font-family: var(--font-b);
  color: var(--beige);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; }

ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  color: var(--beige);
  font-style: normal;
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); line-height: 1.2; font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 600; padding-bottom: 10px; margin-top: 20px; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.875rem); font-weight: 600; font-family: var(--font-b); }
h4 { font-size: clamp(1rem, 2vw, 1.5rem); }

p {
  font-size: clamp(0.95rem, 1.8vw, 1.375rem);
  font-family: var(--font-b);
  font-weight: 400;
  color: var(--beige);
  line-height: 1.65;
}

/* ── SHARED SECTION DIVIDER ──────────────────────────────── */
.section-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  padding: 0 20px;
}
.section-header .line {
  height: 1px;
  background-color: var(--gold);
  flex: 1;
  margin: 0 20px;
}
.section-header .title {
  color: var(--gold);
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  letter-spacing: 6px;
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Legacy .showing divider */
.showing {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: var(--gold);
}
.showing h2 {
  color: var(--gold);
  display: inline-block;
  padding: 0 20px;
}
.showing::before, .showing::after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 0;
  border-bottom: 2px dotted var(--gold);
  vertical-align: middle;
  margin: 0 10px;
}

/* ── CTA BUTTONS ─────────────────────────────────────────── */
.cta-btn {
  display: inline-block;
  background-color: var(--gold2);
  color: #fff;
  border: 1px solid var(--red);
  padding: 12px 32px;
  cursor: pointer;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
.cta-btn:hover {
  background-color: rgba(134,117,80,0.85);
  color: #e8dcdc;
}
.cta-btn.secondary {
  background-color: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.cta-btn.secondary:hover {
  background-color: var(--gold2);
  color: #fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  flex-wrap: wrap;
  padding: 0 20px;
}

/* ── HEADER / DESKTOP NAV ────────────────────────────────── */
header {
  background-color: var(--bg);
}

.desktop-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  padding: 16px 32px;
  gap: 16px;
}

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

.desktop-nav .nav-links:first-child {
  justify-content: flex-end;
}

.desktop-nav .nav-links:nth-of-type(2) {
  justify-content: flex-start;
}

.desktop-nav .nav-links a {
  font-family: var(--font-h);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 900;
  transition: color 0.3s;
  white-space: nowrap;
}
.desktop-nav .nav-links a:hover { color: #fff; }

.logo-nav {
  max-width: 360px;
  width: 100%;
  display: block;
}

.search-bar {
  /* Inline in the grid — no absolute positioning */
  display: flex;
  align-items: center;
}
.search-bar input {
  background-color: rgba(75,75,75,0.67);
  padding: 8px 14px;
  color: #fdfdf2;
  border: none;
  outline: none;
  font-family: var(--font-b);
  width: 160px;
}

/* ── MOBILE TOPBAR (hidden on desktop) ───────────────────── */
.mobile-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(219,187,118,0.2);
}

.logo-nav-mobile { max-width: 150px; }

.hamburger {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  padding: 6px 12px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}

/* ── MOBILE MENU OVERLAY ─────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  padding: 24px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.mobile-logo { max-width: 160px; }

.close-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  padding: 6px 12px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border-top: 1px solid rgba(219,187,118,0.2);
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(219,187,118,0.15);
  margin-bottom: 0;
}
.mobile-nav-links li a {
  display: block;
  font-family: var(--font-h);
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--beige);
  padding: 18px 0;
  transition: color 0.3s;
}
.mobile-nav-links li a:hover { color: var(--gold); }

.mobile-menu-ctas {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}
.mobile-menu-ctas .cta-btn { width: 100%; max-width: 300px; }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}
.overlay.open { display: block; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  margin-top: 60px;
  border-top: 1px solid rgba(219,187,118,0.25);
  padding-top: 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  align-items: start;
}

.footer-left, .footer-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-left a, .footer-right a {
  font-family: var(--font-h);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--gold);
  font-weight: 600;
  line-height: 2;
  transition: color 0.3s;
}
.footer-left a:hover, .footer-right a:hover { color: #fff; }

.footer-right { text-align: right; }

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#logo_footer { max-width: 120px; }

.location p {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-icons img {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s;
}
.social-icons a:hover img { opacity: 0.7; }

.copyright {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.copyright p { font-size: 0.8rem; color: rgba(215,211,202,0.6); }

/* ── HOME — HERO ─────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 400px;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0a;
}
.hero img.hero-bg {
  width: 65%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: left center;
  display: block;
}
.feature-film {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 40px 48px;
  background: linear-gradient(to right, transparent, rgba(5,5,5,0.88) 25%, rgba(5,5,5,0.97));
  position: static;
}
.feature-film h1 { color: var(--beige); font-size: clamp(1.3rem, 2.2vw, 2rem); }
.feature-film h2 { color: var(--gold);  font-size: clamp(1.1rem, 2vw, 1.75rem); }
.feature-film p  { font-size: clamp(0.85rem, 1.2vw, 1rem); color: #a8a8a8; margin: 10px 0 22px; }

/* ── HOME — CONTENT SECTIONS ─────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 80px;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col .text-block { padding: 20px 0; }
.two-col .text-block p { margin-top: 24px; }
.two-col .text-block .cta-btn { margin-top: 30px; }

.two-col img { width: 100%; height: auto; object-fit: cover; }

/* ── QUOTE SECTION ───────────────────────────────────────── */
.quote-section {
  position: relative;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 60px 0;
  overflow: hidden;
  padding: 80px 40px;
}
.quote-bg {
  position: absolute;
  inset: 0;
  background: url("../images/singer.png") center / contain no-repeat;
  opacity: 0.3;
}
.quote-content { position: relative; z-index: 1; }
.quote-text {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--gold);
  font-family: var(--font-b);
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* ── MOVIES — GRID ───────────────────────────────────────── */
.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 40px 40px;
}
.movie-card { text-align: center; }
.movie-poster {
  border: 2px solid var(--red);
  overflow: hidden;
  margin-bottom: 10px;
}
.movie-poster img { width: 100%; aspect-ratio: 2/3; object-fit: cover; }
.movie-title {
  font-family: var(--font-b);
  font-weight: 500;
  color: var(--beige);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.movie-details { font-size: 0.8rem; color: var(--beige); margin-bottom: 10px; opacity: 0.7; }

/* Coming Soon section */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 20px 40px 60px;
}

/* ── SHOWTIMES ───────────────────────────────────────────── */
.movie-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 40px;
  flex-wrap: wrap;
}
.poster img { width: 240px; border: 2px solid var(--red); }
.movie-info { max-width: 280px; }
.movie-info h3 { margin-bottom: 12px; }
.movie-info p { margin: 6px 0; font-size: 1rem; }
.rating { color: #ccc; margin-top: 10px; }

.video-preview { flex: 1; min-width: 280px; max-width: 600px; }
.video-preview img { width: 100%; }

.scroll-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  gap: 20px;
  background-color: rgba(155,23,27,0.55);
  flex-wrap: wrap;
}
.arrow { font-size: 1.8rem; color: var(--beige); cursor: pointer; user-select: none; }
.date-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.date-btn {
  border: 1px solid var(--beige);
  border-radius: 50px;
  padding: 8px 14px;
  min-width: 58px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: var(--font-b);
  color: var(--beige);
  font-size: 0.85rem;
}
.date-btn:hover, .date-btn.active { background-color: rgba(134,117,80,0.9); }
.day { display: block; font-size: 0.7rem; }
.date { font-size: 1rem; font-weight: 700; }
.calendar { font-size: 1.4rem; }

.time-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: rgba(155,23,27,0.4);
  flex-wrap: wrap;
}
.time-btn {
  border: 1px solid var(--beige);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: var(--font-b);
  color: var(--beige);
}
.time-btn:hover, .time-btn.active { background-color: rgba(155,23,27,0.8); }

/* ── RESTAURANT ──────────────────────────────────────────── */
.specials-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  background-color: rgba(155,23,27,0.35);
  padding: 40px;
  flex-wrap: wrap;
}
.special-item1 { text-align: left; max-width: 420px; }
.special-item2 { text-align: right; max-width: 420px; }
.special-item1 img, .special-item2 img { width: 100%; margin-top: 16px; }

.container-menu {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  padding: 40px;
  align-items: start;
}
.column-left, .column-right { padding: 20px; }
.column-center { display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.column-center img { max-width: 260px; }

.column-left h2, .column-right h2 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(219,187,118,0.3);
  padding-bottom: 8px;
  margin-bottom: 12px;
  margin-top: 28px;
}
.column-left h2:first-child, .column-right h2:first-child { margin-top: 0; }

.container-menu ul { padding-left: 0; }
.container-menu li {
  color: var(--beige);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(219,187,118,0.2);
}

/* ── CINEMA ROOMS ────────────────────────────────────────── */
.rooms-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 80px;
  text-align: center;
}
.room-nav-item {
  cursor: pointer;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.room-nav-item h4 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--gold);
  border-bottom: none;
}
.room-nav-item p { font-size: 0.9rem; opacity: 0.7; }

.room-section {
  padding: 20px 60px 60px;
}
.room-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.room-images img { width: 100%; height: 300px; object-fit: cover; }

.room-details {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
}
.room-features ul { padding-left: 0; }
.room-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--beige);
  font-size: 1rem;
}
.room-features li::before { content: "•"; position: absolute; left: 0; color: #fff; }

.room-capacity {
  display: flex;
  align-items: center;
  gap: 16px;
}
.chair-icon { width: 50px; opacity: 0.7; }
.capacity-info {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--beige);
}

.cta-buttons-rooms {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── SEAT SELECTION ──────────────────────────────────────── */
.seats-page { padding: 20px 40px 60px; }

.time-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.time-pill {
  border: 1px solid var(--beige);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-b);
  color: var(--beige);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
}
.time-pill:hover, .time-pill.active {
  background-color: rgba(155,23,27,0.7);
  border-color: var(--red);
  color: #fff;
}

.seat-movie-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 60px;
  flex-wrap: wrap;
}
.seat-poster img { width: 140px; border: 2px solid var(--red); }
.seat-title { flex: 1; }
.seat-title h2 { color: var(--beige); font-size: clamp(1.2rem, 2.5vw, 2rem); margin: 0; padding: 0; }

.ticket-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}
.counter-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--beige);
  color: var(--beige);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 4px;
}
.counter-btn:hover { border-color: var(--gold); color: var(--gold); }
.counter-display {
  font-size: 1.5rem;
  color: var(--beige);
  min-width: 30px;
  text-align: center;
  font-family: var(--font-h);
}
.btn-pick {
  background-color: var(--red);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-family: var(--font-b);
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
}
.btn-pick:hover { background-color: #7a1018; }

.screen-bar {
  background: linear-gradient(to right, #5a0f12, #9B171B, #5a0f12);
  text-align: center;
  padding: 10px;
  margin: 24px 40px 0;
  font-family: var(--font-b);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.seat-map-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 32px 40px;
  flex-wrap: wrap;
}

.seat-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.seat-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

.row-label {
  color: var(--beige);
  font-size: 0.7rem;
  width: 14px;
  text-align: right;
  margin-right: 4px;
  opacity: 0.5;
}

.seat {
  width: 22px;
  height: 16px;
  background-color: rgba(220,215,205,0.85);
  border-radius: 3px 3px 5px 5px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  position: relative;
}
.seat::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 8px;
  background-color: rgba(220,215,205,0.6);
  border-radius: 50%;
}
.seat:hover { background-color: rgba(219,187,118,0.7); transform: scale(1.1); }
.seat.selected { background-color: var(--gold); }
.seat.selected::before { background-color: rgba(219,187,118,0.8); }
.seat.taken {
  background-color: rgba(80,80,80,0.5);
  cursor: not-allowed;
}
.seat.taken::before { background-color: rgba(80,80,80,0.3); }
.seat.accessible {
  background-color: rgba(80,140,200,0.5);
  border: 1px solid rgba(80,140,200,0.8);
}

.aisle { width: 20px; }

.seat-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 16px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--beige);
}
.legend-box {
  width: 20px;
  height: 14px;
  border-radius: 3px;
}
.legend-available { background-color: rgba(220,215,205,0.85); }
.legend-selected { background-color: var(--gold); }
.legend-taken { background-color: rgba(80,80,80,0.5); }
.legend-accessible { background-color: rgba(80,140,200,0.5); border: 1px solid rgba(80,140,200,0.8); }

.seat-summary {
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  color: var(--beige);
  min-height: 28px;
}

.buy-section {
  text-align: center;
  padding: 20px 0 40px;
}

/* ── EVENTS PAGE ─────────────────────────────────────────── */

/* Hero */
.event-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 80px;
  align-items: center;
}
.event-hero-text { }
.event-hero-text .event-eyebrow {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--beige);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.event-hero-text .event-subtitle {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--beige);
  margin-bottom: 20px;
}
.event-hero-text p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 20px;
}
.event-meta {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.event-meta p { font-size: 1rem; }
.event-meta span { font-weight: 600; color: var(--beige); }

.event-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.marquee-frame {
  border: 12px solid var(--red);
  box-shadow: 0 0 0 6px var(--red), 0 0 0 7px #222, inset 0 0 0 4px #222;
  position: relative;
  display: inline-block;
  padding: 10px;
  background: #000;
}
.marquee-lights {
  position: absolute;
  inset: -12px;
  pointer-events: none;
}
.event-hero-image img.event-poster { width: 100%; max-width: 460px; display: block; }

/* More About */
.more-about {
  padding: 20px 80px 60px;
}
.more-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}
.more-about-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0;
  margin: 0 0 6px;
}
.more-about-text .artist-role {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}
.more-about-text p { font-size: clamp(0.9rem, 1.5vw, 1.05rem); line-height: 1.75; }
.more-about-image img { width: 100%; border: 1px solid rgba(219,187,118,0.3); }

/* Merch section */
.merch-section {
  padding: 20px 80px 80px;
  background-color: rgba(0,0,0,0.3);
}
.merch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 40px 0;
}

/* Left column: transparent-bg text image + CTAs */
.merch-text-img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-top: 10px;
}
.merch-text-img > img {
  width: 100%;
  max-width: 460px;
}
.merch-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.merch-text h2 {
  font-family: var(--font-h);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  letter-spacing: 3px;
  color: var(--beige);
  padding: 0;
  margin: 0 0 4px;
}
.merch-text .artist-name-big {
  font-family: var(--font-b);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--beige);
  margin: 0;
  padding: 0;
}
.merch-text .limited-edition {
  font-style: italic;
  color: #e060a0;
  font-size: 1rem;
  margin-bottom: 20px;
  display: block;
}
.merch-text p { font-size: clamp(0.9rem, 1.5vw, 1.05rem); line-height: 1.7; margin-bottom: 16px; }
.merch-text .merch-available {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--beige);
  margin-bottom: 28px;
}
.merch-text .cta-buttons { justify-content: flex-start; padding: 0; margin: 0; }

.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.merch-item {
  background: transparent;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
/* Transparent-bg PNGs float naturally on the page */
.merch-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Nav */
  .desktop-nav { display: none; }
  .mobile-topbar { display: flex; }

  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  /* Hero — tablet: image shorter, text panel narrower */
  .hero { min-height: 280px; border-radius: 8px; }
  .hero img.hero-bg { width: 58%; }
  .feature-film { padding: 24px 28px; }
  .feature-film h1 { font-size: 1.2rem; }
  .feature-film h2 { font-size: 1.05rem; }
  .feature-film p  { display: none; }

  /* Two-col → single col */
  .two-col { grid-template-columns: 1fr; padding: 40px 24px; gap: 24px; }
  .two-col.reverse { direction: ltr; }
  .two-col .text-block { order: 1; }
  .two-col .img-block { order: 2; }

  /* Movie grid */
  .movie-grid, .coming-soon-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 24px; }

  /* Showtimes */
  .movie-container { flex-direction: column; align-items: center; padding: 24px; }
  .poster img { width: 160px; }
  .video-preview { min-width: unset; width: 100%; }

  /* Restaurant */
  .specials-container { flex-direction: column; align-items: center; gap: 30px; padding: 30px 24px; }
  .special-item1, .special-item2 { text-align: left; max-width: 100%; }
  .container-menu { grid-template-columns: 1fr; padding: 24px; }
  .column-center { padding: 20px 0; }

  /* Cinema rooms */
  .rooms-nav { grid-template-columns: repeat(2, 1fr); padding: 30px 24px; }
  .room-section { padding: 20px 24px 40px; }
  .room-images { grid-template-columns: 1fr; }
  .room-images img { height: 220px; }

  /* Events */
  .event-hero { grid-template-columns: 1fr; padding: 40px 24px; }
  .more-about { padding: 20px 24px 40px; }
  .more-about-grid { grid-template-columns: 1fr; gap: 30px; }
  .merch-section { padding: 20px 24px 40px; }
  .merch-inner { grid-template-columns: 1fr; gap: 30px; }
  .merch-text-img img { max-width: 100%; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 24px 40px; }
  .footer-center { grid-column: 1 / -1; order: -1; margin-bottom: 20px; }
  .footer-right { text-align: left; }

  /* Seats */
  .seats-page { padding: 16px; }
  .seat-movie-info { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
  .screen-bar { margin: 16px 16px 0; }
  .seat-map-wrapper { gap: 16px; padding: 20px 8px; }
  .seat { width: 18px; height: 13px; }
  .seat::before { width: 8px; height: 6px; top: -5px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 520px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 520px) {
  /* Hero mobile — stack image on top, text below */
  .hero { flex-direction: column; min-height: unset; border-radius: 8px; }
  .hero img.hero-bg { width: 100%; height: 220px; object-fit: cover; object-position: center top; }
  .feature-film {
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    background: rgba(5,5,5,0.95);
  }
  .feature-film h1 { font-size: 1.1rem; }
  .feature-film h2 { font-size: 1rem; }
  .feature-film p  { display: block; font-size: 0.85rem; }

  /* Movie grid 1 col on very small */
  .movie-grid, .coming-soon-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }

  /* Showtimes */
  .time-selector { gap: 10px; }
  .time-pill { padding: 10px 18px; font-size: 0.9rem; }
  .date-btn { padding: 7px 10px; min-width: 46px; font-size: 0.75rem; }
  .time-btn { padding: 8px 14px; font-size: 0.85rem; }

  /* Cinema rooms */
  .rooms-nav { grid-template-columns: repeat(2, 1fr); padding: 20px 16px; }
  .room-details { flex-direction: column; }

  /* Merch grid */
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Footer stacked */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-center { order: -1; }

  /* Seat map: smaller seats */
  .seat { width: 14px; height: 10px; }
  .seat::before { width: 7px; height: 5px; top: -4px; }
  .seat-row { gap: 4px; }
  .seat-section { gap: 5px; }
  .seat-map-wrapper { gap: 8px; }
  .aisle { width: 10px; }
  .row-label { display: none; }

  /* Events */
  .event-hero { padding: 30px 16px; }
  .more-about { padding: 16px 16px 30px; }
  .merch-section { padding: 16px 16px 40px; }
  .merch-text .cta-buttons { flex-direction: column; align-items: stretch; }
  .merch-text .cta-btn { text-align: center; }

  /* CTAs full width */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .cta-btn { width: 100%; max-width: 300px; }
}
