/* ============================================
   KAP CINEMA — Afrocentric Cultural Palette
   Inspired by Yoruba adire, Kente cloth,
   Nollywood warmth & the Nigerian earth
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  /* ── Primary: Burnt Sienna / Yoruba Terra Cotta ── */
  --primary:       #C2400A;
  --primary-dark:  #8B2D06;
  --primary-light: #E05520;
  --primary-glow:  rgba(194, 64, 10, 0.35);

  /* ── Gold: Kente Cloth / Oshun Brass ── */
  --gold:          #D4950A;
  --gold-dark:     #A97308;
  --gold-bright:   #F0B429;
  --gold-pale:     rgba(212, 149, 10, 0.15);

  /* ── Accent: Adire Indigo / Deep Cobalt ── */
  --accent:        #1B4F72;
  --accent-light:  #2471A3;

  /* ── Earth & Forest Tones ── */
  --earth-green:   #2D6A4F;
  --earth-red:     #922B21;
  --earth-sand:    #C8A97A;
  --earth-brown:   #6B3A2A;

  /* ── Backgrounds: Ebony Wood / Dark Mahogany ── */
  --bg-dark:       #0C0804;
  --bg-card:       #15100C;
  --bg-card2:      #1E1510;
  --bg-nav:        rgba(12, 8, 4, 0.97);
  --bg-surface:    #241A12;

  /* ── Text ── */
  --text-primary:  #F5EFE6;
  --text-secondary:#B09A85;
  --text-muted:    #6B5242;
  --text-gold:     #F0B429;

  /* ── Borders ── */
  --border:        rgba(212, 149, 10, 0.14);
  --border-strong: rgba(212, 149, 10, 0.30);
  --border-glow:   rgba(194, 64, 10, 0.55);

  /* ── Semantic ── */
  --success:       #2D6A4F;
  --success-light: rgba(45, 106, 79, 0.15);
  --warning:       #D4950A;
  --info:          #1B4F72;
  --danger:        #922B21;

  /* ── Shape & Motion ── */
  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --shadow:        0 4px 24px rgba(0,0,0,0.55);
  --shadow-glow:   0 0 40px rgba(194,64,10,0.22);
  --shadow-gold:   0 0 30px rgba(212,149,10,0.20);
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Kente Pattern Border Utility ── */
.kente-border {
  border-image: repeating-linear-gradient(
    90deg,
    #C2400A 0px,  #C2400A 8px,
    #D4950A 8px,  #D4950A 16px,
    #1B4F72 16px, #1B4F72 24px,
    #2D6A4F 24px, #2D6A4F 32px,
    #D4950A 32px, #D4950A 40px
  ) 4;
  border-width: 4px;
  border-style: solid;
}

/* ── Kente Stripe Accent (horizontal) ── */
.kente-stripe {
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #C2400A 0px,  #C2400A 20px,
    #D4950A 20px, #D4950A 40px,
    #1B4F72 40px, #1B4F72 60px,
    #2D6A4F 60px, #2D6A4F 80px,
    #D4950A 80px, #D4950A 100px
  );
}

/* ── Adire (tie-dye) Pattern Background Utility ── */
.adire-bg {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(27,79,114,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(194,64,10,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(212,149,10,0.04) 0%, transparent 50%);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Cultural heading font for display text */
.display-font { font-family: 'Playfair Display', serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; outline: none; }
input, select, textarea { outline: none; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #C2400A 0%, #C2400A 25%,
    #D4950A 25%, #D4950A 50%,
    #1B4F72 50%, #1B4F72 75%,
    #2D6A4F 75%, #2D6A4F 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  border-bottom-color: var(--border-glow);
}

.navbar.scrolled::after { opacity: 1; }

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
}

.nav-logo .logo-kap   { color: var(--gold-bright); }
.nav-logo .logo-cinema { color: var(--text-primary); }

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 18px rgba(194,64,10,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text-primary); background: rgba(212,149,10,0.08); }
.nav-links a.active { color: var(--gold-bright); background: rgba(212,149,10,0.1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-nav-outline {
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-secondary);
}

.btn-nav-outline:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(212,149,10,0.08);
}

.btn-nav-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(194,64,10,0.35);
}

.btn-nav-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 0 30px rgba(194,64,10,0.55);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 2px solid var(--border-strong);
  padding: 16px 24px;
  z-index: 999;
  transform: translateY(-105%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open { transform: translateY(0); display: block; }

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover { color: var(--gold-bright); padding-left: 8px; }
.mobile-menu a:last-child { border-bottom: none; }

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  margin-top: 70px;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.slide.active .slide-bg { transform: scale(1); }

/* Rich African overlay — deep warm left gradient */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,8,4,0.97) 0%,
    rgba(12,8,4,0.82) 40%,
    rgba(12,8,4,0.30) 70%,
    rgba(12,8,4,0.05) 100%
  );
}

.slide-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, var(--bg-dark) 0%, rgba(12,8,4,0.65) 55%, transparent 100%);
}

/* Kente accent strip on hero */
.slide-kente {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    #C2400A 0px, #C2400A 24px,
    #D4950A 24px,#D4950A 48px,
    #1B4F72 48px,#1B4F72 72px,
    #2D6A4F 72px,#2D6A4F 96px,
    #D4950A 96px,#D4950A 120px
  );
  z-index: 5;
}

.slide-content {
  position: absolute;
  bottom: 0; left: 0;
  padding: 60px 80px;
  max-width: 720px;
  z-index: 5;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(194,64,10,0.4);
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  color: var(--text-primary);
}

.slide-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.slide-meta span { display: flex; align-items: center; gap: 5px; }
.slide-rating { color: var(--gold-bright) !important; font-weight: 700; }

.slide-synopsis {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 560px;
}

.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 44px;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
}

.slider-dots { display: flex; gap: 7px; }

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(245,239,230,0.25);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  width: 30px;
  background: var(--gold-bright);
}

.slider-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(245,239,230,0.08);
  border: 1px solid rgba(212,149,10,0.25);
  color: var(--text-primary);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(194,64,10,0.5);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(194,64,10,0.40);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 8px 30px rgba(194,64,10,0.58);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(245,239,230,0.08);
  color: var(--text-primary);
  border: 1px solid rgba(245,239,230,0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(245,239,230,0.14);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(194,64,10,0.38);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #1a0d00;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(212,149,10,0.38);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fac535 0%, var(--gold-bright) 100%);
  box-shadow: 0 8px 30px rgba(212,149,10,0.55);
  transform: translateY(-2px);
}

.btn-sm  { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg  { padding: 16px 36px; font-size: 1rem; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================================
   SECTION LAYOUTS
   ================================================================ */
.section { padding: 80px 0; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #C2400A 0px,  #C2400A 14px,
    #D4950A 14px, #D4950A 28px,
    #1B4F72 28px, #1B4F72 42px,
    #2D6A4F 42px, #2D6A4F 56px,
    #D4950A 56px, #D4950A 70px
  );
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ================================================================
   MOVIE CARDS
   ================================================================ */
.movies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.movie-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(212,149,10,0.35);
}

.movie-poster {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
}

.movie-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.movie-card:hover .movie-poster img { transform: scale(1.08); }

.movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,4,0.97) 0%, rgba(12,8,4,0.5) 50%, transparent 80%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  gap: 8px;
}

.movie-card:hover .movie-overlay { opacity: 1; }

.movie-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-showing {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(194,64,10,0.4);
}

.badge-soon {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #1a0d00;
  font-weight: 800;
}

.badge-format {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 8px;
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(212,149,10,0.25);
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.movie-rating-badge {
  position: absolute;
  bottom: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0,0,0,0.82);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-bright);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: var(--transition);
}

.movie-card:hover .movie-rating-badge { opacity: 1; }

.movie-info { padding: 16px; }

.movie-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-primary);
}

.movie-genre {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.movie-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.movie-duration { display: flex; align-items: center; gap: 4px; }
.movie-imdb     { color: var(--gold-bright); font-weight: 700; display: flex; align-items: center; gap: 4px; }

/* ================================================================
   GENRE FILTER TABS
   ================================================================ */
.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.filter-tab:hover, .filter-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-primary);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(194,64,10,0.35);
}

/* ================================================================
   COMING SOON SECTION
   ================================================================ */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}

.coming-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  gap: 0;
}

.coming-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212,149,10,0.18), var(--shadow-gold);
  transform: translateY(-4px);
}

.coming-poster { width: 110px; flex-shrink: 0; overflow: hidden; }

.coming-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.coming-card:hover .coming-poster img { transform: scale(1.06); }

.coming-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.coming-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--gold-pale);
  color: var(--gold-bright);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid rgba(212,149,10,0.35);
}

.coming-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.coming-genre  { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; }

.countdown-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--bg-card2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #C2400A 0%, #C2400A 20%,
    #D4950A 20%,#D4950A 40%,
    #1B4F72 40%,#1B4F72 60%,
    #2D6A4F 60%,#2D6A4F 80%,
    #D4950A 80%,#D4950A 100%
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-bright);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ================================================================
   SEARCH BAR
   ================================================================ */
.search-wrapper { position: relative; max-width: 500px; width: 100%; }

.search-input {
  width: 100%;
  padding: 12px 20px 12px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,149,10,0.12);
  background: var(--bg-card2);
}

.search-input::placeholder { color: var(--text-muted); }

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

/* ================================================================
   FORMS & INPUTS
   ================================================================ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,149,10,0.10);
  background: var(--bg-card2);
}

.form-control::placeholder { color: var(--text-muted); }

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23B09A85' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ================================================================
   TOAST NOTIFICATIONS
   ================================================================ */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  min-width: 300px;
  max-width: 380px;
  pointer-events: all;
  animation: slideInRight 0.3s ease;
}

.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: var(--primary); }
.toast.info    { border-left-color: var(--info); }
.toast.warning { border-left-color: var(--gold); }

.toast-icon  { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.toast-body  { flex: 1; }
.toast-title { font-weight: 700; font-size: 0.875rem; margin-bottom: 2px; color: var(--text-primary); }
.toast-msg   { font-size: 0.8rem; color: var(--text-secondary); }

.toast-close {
  background: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0 4px;
  align-self: flex-start;
  transition: color 0.2s;
}

.toast-close:hover { color: var(--text-primary); }

@keyframes slideInRight {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(110%); }
}

/* ================================================================
   MODAL
   ================================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal { transform: scale(1) translateY(0); }

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.modal-close {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(245,239,230,0.06);
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.modal-close:hover { background: var(--primary); color: #fff; }
.modal-body   { padding: 28px; }
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 0 0 28px;
  margin-top: auto;
}

/* Kente stripe atop footer */
footer::before {
  content: '';
  display: block;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #C2400A 0px,  #C2400A 20px,
    #D4950A 20px, #D4950A 40px,
    #1B4F72 40px, #1B4F72 60px,
    #2D6A4F 60px, #2D6A4F 80px,
    #D4950A 80px, #D4950A 100px
  );
  margin-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(212,149,10,0.07);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(194,64,10,0.35);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--gold-bright);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-col ul li a:hover { color: var(--gold-bright); padding-left: 4px; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom span { color: var(--gold-bright); }

.footer-badges { display: flex; gap: 8px; }

.footer-badge {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(212,149,10,0.07);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ================================================================
   PAGE HERO
   ================================================================ */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(to bottom, rgba(194,64,10,0.07) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 8px;
}

.page-hero-sub  { color: var(--text-secondary); font-size: 1rem; }
.breadcrumb     { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a   { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb span { color: var(--text-secondary); }

/* ================================================================
   LOADER
   ================================================================ */
.loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--text-muted);
  gap: 12px;
}

.spinner {
  width: 24px; height: 24px;
  border: 3px solid rgba(212,149,10,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   EMPTY STATE
   ================================================================ */
.empty-state { text-align: center; padding: 80px 24px; color: var(--text-muted); }
.empty-icon  { font-size: 3.5rem; margin-bottom: 16px; }
.empty-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.empty-desc  { font-size: 0.9rem; }

/* ================================================================
   BADGES & CHIPS
   ================================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.chip-red   { background: rgba(194,64,10,0.15);  color: var(--primary-light); border: 1px solid rgba(194,64,10,0.30); }
.chip-gold  { background: rgba(212,149,10,0.15);  color: var(--gold-bright);   border: 1px solid rgba(212,149,10,0.35); }
.chip-green { background: rgba(45,106,79,0.15);   color: #4ade80;              border: 1px solid rgba(45,106,79,0.35); }
.chip-blue  { background: rgba(27,79,114,0.15);   color: #60a5fa;              border: 1px solid rgba(27,79,114,0.35); }
.chip-gray  { background: rgba(245,239,230,0.07); color: var(--text-secondary); border: 1px solid var(--border); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .slide-content { padding: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav-outline { display: none; }
  .hamburger { display: flex; }
  .section   { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .slide-content { padding: 28px 24px; }
  .form-row  { grid-template-columns: 1fr; }
  .movies-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .slider-controls { right: 24px; bottom: 24px; }
}

@media (max-width: 480px) {
  .movies-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .container   { padding: 0 16px; }
  .hero-slider { height: 85vh; }
  .slide-title { font-size: 1.7rem; }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-fade    { animation: fadeIn 0.4s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Gold shimmer text utility */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 30%, #fde68a 50%, var(--gold-bright) 70%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
