@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

@font-face {
  font-family: 'Noot';
  src: url('/assets/fonts/Noot-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0f0f0b;
  --surface:   #1a1a12;
  --surface-2: #232318;
  --surface-3: #2d2d20;
  --gold:      #c9a227;
  --gold-dim:  #8a6e1a;
  --cream:     #f0e6c8;
  --muted:     #7a6a4a;
  --border:    #2e2e22;
  --font:      'Heebo', sans-serif;
}

html  { direction: rtl; scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--cream); font-family: var(--font); line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { color: inherit; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  height: 64px; padding: 0 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  display: flex; align-items: center; gap: 1.1rem;
}
.nav-title {
  font-family: 'Noot', var(--font);
  font-size: 1.5rem; font-weight: normal; color: var(--gold);
  letter-spacing: .04em; text-decoration: none; white-space: nowrap;
}
.nav-overline {
  font-size: .65rem; letter-spacing: .18em;
  color: var(--muted); text-transform: uppercase;
}
.nav-wa-icon {
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); text-decoration: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s; flex-shrink: 0;
}
.nav-wa-icon:hover { border-color: var(--gold); color: var(--gold); }
.nav-wa-icon svg { width: 18px; height: 18px; }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, #2a1e0a 0%, transparent 70%),
    var(--bg);
  position: relative; overflow: hidden;
}
#hero.has-hero-img {
  height: 100vh;
  min-height: unset;
  padding: 0;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-overline {
  font-size: clamp(.75rem, 1.8vw, .9rem);
  letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 1rem;
  position: relative;
}
.hero-title {
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--cream); margin-bottom: .6rem;
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300; color: var(--muted);
  position: relative;
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
  display: block; margin: 0; padding: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  border-radius: 0; box-shadow: none;
}
.hero-scroll {
  margin-top: 4rem; display: flex; flex-direction: column; align-items: center;
  gap: .5rem; color: var(--muted); font-size: .8rem;
  position: relative; animation: fadeUp 1.2s ease .4s both;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; } }

/* ── Section shell ── */
.section-wrap { padding: 5rem 2rem; max-width: 920px; margin: 0 auto; }
.section-label {
  font-size: .72rem; letter-spacing: .28em; color: var(--gold);
  text-transform: uppercase; margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.5rem, 4vw, 2.3rem); font-weight: 700; margin-bottom: 1.5rem; }
.section-divider { border: none; border-top: 1px solid var(--border); }

/* ── Next Show ── */
#next-show { background: var(--bg); padding: 5rem 2rem; }
.next-show-inner { max-width: 920px; margin: 0 auto; }

.show-card {
  border: 1px solid var(--border); border-radius: 1.1rem; overflow: hidden;
}
.show-card-head {
  background: linear-gradient(135deg, var(--surface-2) 0%, #1c1809 100%);
  padding: 2.5rem 2.2rem;
  border-bottom: 1px solid var(--border);
}
.show-date-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--gold); color: #0f0f0b;
  padding: .25rem .75rem; border-radius: 2rem;
  font-size: .8rem; font-weight: 700; margin-bottom: 1.1rem;
}
.show-name   { font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 700; line-height: 1.15; margin-bottom: .4rem; }
.show-tagline { color: var(--muted); font-size: 1rem; font-weight: 300; }

.show-card-body { padding: 2rem 2.2rem; }
.show-desc {
  color: #cdb98a; font-size: 1rem; line-height: 1.85;
  margin-bottom: 2rem;
  white-space: pre-line;
}
.show-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.meta-label { font-size: .68rem; letter-spacing: .22em; color: var(--gold); text-transform: uppercase; margin-bottom: .25rem; }
.meta-val   { font-size: .95rem; }
.meta-sub   { font-size: .8rem; color: var(--muted); margin-top: .15rem; }
.meta-link  { color: var(--gold); text-decoration: none; }
.meta-link:hover { text-decoration: underline; }

.no-show-state {
  padding: 4rem 2rem; text-align: center; color: var(--muted);
}
.no-show-state p { font-size: 1.1rem; margin-bottom: .5rem; }
.no-show-state small { font-size: .85rem; }

/* ── About ── */
#about { border-top: 1px solid var(--border); }
.about-body {
  color: #c8b48a; font-size: 1.05rem; line-height: 1.9;
  white-space: pre-line;
}

/* ── Archive ── */
#archive { border-top: 1px solid var(--border); }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.4rem;
}
.arc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: .85rem; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .2s, transform .2s;
  display: block;
}
.arc-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.arc-thumb {
  width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover;
}
.arc-thumb-ph {
  width: 100%; aspect-ratio: 16 / 9;
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--muted);
}
.arc-info   { padding: .9rem 1.1rem; }
.arc-date   { font-size: .72rem; color: var(--gold); margin-bottom: .2rem; }
.arc-title  { font-size: .95rem; font-weight: 600; }

/* ── Footer ── */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 3.5rem 2rem; text-align: center;
}
.ft-name   { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: .3rem; }
.ft-tagline { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.ft-links  { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.ft-link   {
  color: var(--muted); text-decoration: none; font-size: .88rem;
  display: flex; align-items: center; gap: .35rem;
  transition: color .2s;
}
.ft-link:hover { color: var(--gold); }
.ft-copy   { color: var(--muted); font-size: .72rem; }

/* ── Responsive ── */
@media (max-width: 640px) {
  nav { height: 52px; padding: 0 1rem; }
  .nav-title { font-size: 1.15rem; }
  .nav-overline { font-size: .58rem; }
  .nav-sub { font-size: .68rem; }
  .section-wrap { padding: 3.5rem 1.1rem; }
  .show-card-head { padding: 1.5rem 1.1rem; }
  .show-card-body { padding: 1.4rem 1.1rem; }
  .hero-scroll { margin-top: 2.5rem; }

  /* Mobile hero: image at natural portrait ratio below header */
  #hero.has-hero-img {
    height: auto;
    min-height: unset;
    overflow: visible;
    margin-top: 52px;
  }
  .hero-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    display: block;
  }
  .hero-img img {
    width: 100%;
    height: auto;
    object-fit: initial;
    border-radius: 0;
    box-shadow: none;
  }
}
