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

/* ── PALETTE ── */
:root {
  --deep:        #050307;
  --navy:        #0c0a18;
  --saffron:     #C85E0A;
  --saffron-lt:  #E07828;
  --gold:        #B8892A;
  --gold-bright: #D4A843;
  --crimson:     #7A1515;
  --cream:       #EDD5A0;
  --cream-dim:   #C9B47A;
  --muted:       #6B6080;
  --white:       #FAF5ED;
  --border:      rgba(184,137,42,0.18);
  --border-glow: rgba(200,94,10,0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ── PARTICLE CANVAS ── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  background: linear-gradient(to bottom, rgba(5,3,7,0.92) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-punjabi {
  font-family: 'Noto Sans Gurmukhi', sans-serif;
  font-size: 0.8rem;
  color: var(--saffron);
  letter-spacing: 2px;
}

.nav-logo-en {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(250,245,237,0.65);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--saffron); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.25) saturate(0.6);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 50% 45%, rgba(200,94,10,0.14) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(5,3,7,0.3) 0%, rgba(5,3,7,0.65) 60%, rgba(5,3,7,1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 130px 24px 90px;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-block;
  border: 1px solid var(--saffron);
  color: var(--saffron);
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 6px 22px;
  margin-bottom: 28px;
  animation: fadeDown 0.9s ease both;
}

.hero-punjabi {
  font-family: 'Noto Sans Gurmukhi', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--saffron-lt);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 10px;
  animation: fadeDown 0.9s ease 0.1s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -3px;
  margin-bottom: 28px;
  background: linear-gradient(160deg, var(--cream) 20%, var(--gold-bright) 55%, var(--saffron-lt) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 1s ease 0.15s both;
}

.hero-story-line {
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: var(--cream-dim);
  letter-spacing: 1px;
  line-height: 1.7;
  margin-bottom: 16px;
  animation: fadeUp 1s ease 0.28s both;
}

.hero-story-line strong {
  color: var(--cream);
  font-weight: 500;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 32px 0 48px;
  animation: fadeUp 1s ease 0.38s both;
}

.hero-meta span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
}

.meta-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 1s ease 0.48s both;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 44px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-saffron {
  background: var(--saffron);
  color: var(--white);
}

.btn-saffron:hover {
  background: var(--saffron-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200,94,10,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(237,213,160,0.3);
}

.btn-outline:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-lg { padding: 20px 64px; font-size: 0.9rem; letter-spacing: 3px; }

.btn-book {
  display: inline-block;
  background: var(--saffron);
  color: var(--white);
  padding: 22px 72px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.btn-book::after {
  content: ' →';
  transition: letter-spacing 0.3s ease;
}

.btn-book:hover {
  background: var(--saffron-lt);
  transform: translateY(-3px);
  box-shadow: 0 20px 56px rgba(200,94,10,0.5);
}

.btn-book:hover::after { letter-spacing: 6px; }

/* ── SECTION COMMON ── */
.section-label {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  margin-bottom: 64px;
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 56px;
}

/* ── TIMELINE ── */
.timeline-section {
  position: relative;
  z-index: 10;
  padding: 110px 60px;
  background: var(--navy);
  overflow: hidden;
}

.timeline-section::before {
  content: '☬';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28rem;
  color: rgba(184,137,42,0.03);
  pointer-events: none;
  line-height: 1;
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--gold) 15%,
    var(--gold) 85%,
    transparent 100%);
}

.timeline-item {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
  position: relative;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-node {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 2px solid var(--gold);
  background: var(--deep);
  position: relative;
  z-index: 1;
}

.node-crimson { border-color: var(--crimson); background: rgba(122,21,21,0.15); }
.node-dark    { border-color: #3a3450;        background: rgba(20,18,35,0.8); }
.node-gold    { border-color: var(--gold);    background: rgba(184,137,42,0.12); }
.node-saffron { border-color: var(--saffron); background: rgba(200,94,10,0.15); }

.timeline-body { padding-top: 10px; }

.timeline-year {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 8px;
}

.timeline-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}

.timeline-desc {
  font-size: 0.9rem;
  color: rgba(237,213,160,0.6);
  line-height: 1.85;
  font-weight: 300;
}

/* ── CHARDI KALA QUOTE ── */
.quote-section {
  position: relative;
  z-index: 10;
  padding: 100px 60px;
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200,94,10,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.quote-punjabi {
  font-family: 'Noto Sans Gurmukhi', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--saffron-lt);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.quote-translation {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--cream-dim);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.quote-meaning {
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

/* ── FILM INFO STRIP ── */
.film-info {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(12,10,24,0.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-block {
  padding: 36px 52px;
  text-align: center;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 140px;
}

.info-block:last-child { border-right: none; }

.info-label {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 700;
}

/* ── ABOUT / POSTER ── */
.about-section {
  position: relative;
  z-index: 10;
  padding: 110px 60px;
  background: var(--deep);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-poster-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-poster-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poster-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #130d00 0%, #1e1400 50%, #0d0b18 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.poster-fallback-symbol {
  font-size: 5rem;
  color: rgba(184,137,42,0.2);
}

.poster-fallback-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: rgba(184,137,42,0.3);
  letter-spacing: 4px;
  writing-mode: horizontal-tb;
}

.poster-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--saffron);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  font-weight: 600;
}

.about-text .section-label { text-align: left; }
.about-text .section-title { text-align: left; margin-bottom: 24px; }

.about-bio {
  font-size: 0.9rem;
  color: rgba(237,213,160,0.65);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-bio strong { color: var(--cream); font-weight: 500; }

.cast-row {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.cast-pill {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  text-transform: uppercase;
}

/* ── REGION CARDS ── */
.regions-section {
  position: relative;
  z-index: 10;
  padding: 100px 60px;
  background: var(--navy);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.region-card {
  position: relative;
  background: rgba(5,3,7,0.7);
  border: 1px solid var(--border);
  padding: 52px 44px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: all 0.4s ease;
}

.region-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--saffron), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.region-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.6), 0 0 40px rgba(200,94,10,0.08);
}

.region-card:hover::after { transform: scaleX(1); }

.region-flag {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 22px;
}

.region-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.region-cities {
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.region-cta-text {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron);
  font-weight: 600;
}

/* ── REGION PAGE HERO ── */
.region-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.region-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.2) saturate(0.5);
}

.region-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 50% 50%, rgba(200,94,10,0.12) 0%, transparent 65%),
    linear-gradient(to bottom, rgba(5,3,7,0.4), rgba(5,3,7,0.7) 60%, rgba(5,3,7,1));
}

.region-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 150px 24px 90px;
  max-width: 760px;
}

.region-flag-lg {
  font-size: 5rem;
  display: block;
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}

.region-label {
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
  animation: fadeDown 0.8s ease 0.1s both;
}

.region-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  background: linear-gradient(160deg, var(--cream) 30%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  animation: fadeUp 0.9s ease 0.15s both;
}

.region-subtitle {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 52px;
  animation: fadeUp 0.9s ease 0.25s both;
}

/* ── SHOWTIMES ── */
.showtimes-section {
  position: relative;
  z-index: 10;
  padding: 90px 60px;
  background: var(--navy);
}

.showtimes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.showtime-card {
  background: rgba(5,3,7,0.7);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.showtime-card:hover { border-color: rgba(200,94,10,0.35); }

.showtime-city {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.showtime-cinema {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1.3;
}

.showtime-times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-pill {
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid rgba(184,137,42,0.2);
  color: var(--cream-dim);
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1s both;
  z-index: 10;
}

.scroll-indicator span {
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--saffron), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 10;
  padding: 52px 64px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  background: var(--deep);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-khanda {
  font-size: 2rem;
  color: rgba(184,137,42,0.4);
  line-height: 1;
}

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
}

.footer-tagline {
  font-family: 'Noto Sans Gurmukhi', sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--saffron); }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(107,96,128,0.5);
  letter-spacing: 1px;
}

/* ── BOTTOM CTA SECTION ── */
.cta-section {
  position: relative;
  z-index: 10;
  padding: 90px 60px;
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(200,94,10,0.06), transparent 65%);
}

.cta-sub {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 2px;
  margin-top: 20px;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .timeline-section, .about-section, .regions-section,
  .showtimes-section, .cta-section { padding: 64px 24px; }
  .timeline::before { left: 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .film-info { flex-direction: column; }
  .info-block { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .info-block:last-child { border-bottom: none; }
  footer { padding: 40px 24px; flex-direction: column; text-align: center; }
}
