/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --saffron:   #E8650A;
  --saffron-l: #FF8C2A;
  --saffron-d: #B84D00;
  --gold:      #F5C842;
  --ivory:     #FDF6EE;
  --cream:     #FFF8F0;
  --maroon:    #1A0A00;
  --maroon-m:  #4A1800;
  --grey:      #7A6055;
  --white:     #FFFFFF;
  --card-bg:   rgba(255,255,255,0.96);
  --shadow-s:  0 4px 16px rgba(26,10,0,0.08);
  --shadow-m:  0 12px 40px rgba(26,10,0,0.12);
  --shadow-l:  0 24px 64px rgba(26,10,0,0.16);
  --radius-m:  18px;
  --radius-l:  28px;
  --bar-h:     72px;
}

body {
  font-family: 'DM Sans', 'Noto Sans Devanagari', Arial, sans-serif;
  background: var(--ivory);
  color: var(--maroon);
  padding-bottom: calc(var(--bar-h) + 16px);
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll reveal ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Divider ornament ─────────────────────────── */
.divider {
  display: flex; align-items: center; gap: 12px;
  max-width: 340px; margin: 0 auto 28px;
}
.divider::before, .divider::after {
  content: ''; flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider span {
  font-size: 1.25rem; line-height: 1;
  filter: drop-shadow(0 0 4px rgba(245,200,66,.6));
}

/* ── Header ───────────────────────────────────── */
.header {
  position: fixed; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  background: rgba(255,248,240,0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: var(--radius-l);
  border: 1px solid rgba(232,101,10,0.12);
  box-shadow: var(--shadow-m);
  z-index: 1000;
}

.logo {
  font-family: 'Tiro Devanagari Marathi', 'Noto Serif Devanagari', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--maroon);
  letter-spacing: .02em;
}
.logo span { color: var(--saffron); }

.call-btn {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-l));
  color: var(--white); text-decoration: none;
  padding: 9px 18px; border-radius: 999px;
  font-size: .85rem; font-weight: 600; letter-spacing: .03em;
  box-shadow: 0 6px 20px rgba(232,101,10,.35);
  transition: box-shadow .2s, transform .2s;
  display: flex; align-items: center; gap: 7px;
}
.call-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,101,10,.45); }
.call-btn i { font-size: .9rem; }

/* ── Hero ─────────────────────────────────────── */
.hero {
  height: 100svh; min-height: 560px;
  position: relative; overflow: hidden;
}

.hero img#slideImage {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .7s ease;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,10,0,.15) 0%,
    rgba(26,10,0,.55) 50%,
    rgba(26,10,0,.82) 100%
  );
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: center;
  text-align: center; padding: 0 24px 100px;
  color: var(--white);
}

.hero-eyebrow {
  font-size: .78rem; letter-spacing: .18em; font-weight: 500;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-overlay h1 {
  font-family: 'Tiro Devanagari Marathi', 'Noto Serif Devanagari', serif;
  font-size: clamp(1.7rem, 5vw, 3rem);
  line-height: 1.25; font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-overlay p {
  font-size: clamp(.85rem, 2.5vw, 1.05rem);
  opacity: .88; margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.6;
}

.hero-btn {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--maroon); font-weight: 700;
  text-decoration: none; padding: 14px 32px;
  border-radius: 999px; font-size: 1rem;
  box-shadow: 0 8px 28px rgba(232,101,10,.5);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}
.hero-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 36px rgba(232,101,10,.6); }

/* slide dots */
.slide-dots {
  position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 5;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .3s, width .3s;
}
.dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ── Artist Card ──────────────────────────────── */
.artist-card {
  max-width: 820px; margin: -64px auto 40px;
  background: var(--card-bg);
  padding: 0 30px 32px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  text-align: center; position: relative; z-index: 10;
  border: 1px solid rgba(232,101,10,.08);
}

.artist-avatar-wrap {
  display: inline-block;
  margin-top: -60px; margin-bottom: 16px;
  position: relative;
}
.artist-avatar-wrap::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--gold), var(--saffron), var(--gold));
  z-index: -1;
}
.artist-card img.avatar {
  width: 120px; height: 120px;
  border-radius: 50%; object-fit: cover;
  border: 4px solid var(--white);
  display: block;
}

.artist-card h2 {
  font-family: 'Tiro Devanagari Marathi', 'Noto Serif Devanagari', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--maroon); margin-bottom: 6px;
}

.artist-card .tag-row {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center; margin: 10px 0 14px;
}
.tag {
  background: linear-gradient(135deg,rgba(232,101,10,.1),rgba(245,200,66,.15));
  color: var(--saffron-d); border: 1px solid rgba(232,101,10,.2);
  padding: 4px 13px; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
}

.artist-card p.bio {
  color: var(--grey); line-height: 1.75; font-size: .93rem;
  max-width: 540px; margin: 0 auto;
}

/* ── Section heading ──────────────────────────── */
.section { padding: 12px 20px 40px; max-width: 960px; margin: 0 auto; }
.section-title {
  font-family: 'Tiro Devanagari Marathi', 'Noto Serif Devanagari', serif;
  font-size: clamp(1.3rem, 4vw, 1.75rem); font-weight: 700;
  text-align: center; color: var(--maroon);
  margin-bottom: 6px;
}

/* ── Video Grid ───────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.video-wrap {
  border-radius: var(--radius-m); overflow: hidden;
  box-shadow: var(--shadow-m);
  aspect-ratio: 16/9;
  background: var(--maroon);
  border: 1px solid rgba(232,101,10,.1);
  transition: transform .25s, box-shadow .25s;
}
.video-wrap:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.video-wrap iframe {
  width: 100%; height: 100%; display: block;
  border: 0;
}

/* ── Events ───────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px; margin: 0 auto;
  padding: 0 20px 44px;
}

.event-card {
  background: var(--card-bg);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  overflow: hidden;
  border: 1px solid rgba(232,101,10,.08);
}

.event-card-header {
  padding: 16px 22px 14px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  display: flex; align-items: center; gap: 10px;
}
.event-card-header i { color: var(--white); font-size: 1.1rem; }
.event-card-header h2 {
  font-family: 'Tiro Devanagari Marathi', 'Noto Serif Devanagari', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--white);
}

.event-list { padding: 12px 0; }
.event-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(232,101,10,.07);
  transition: background .15s;
}
.event-item:last-child { border-bottom: 0; }
.event-item:hover { background: rgba(232,101,10,.04); }

.event-date-box {
  min-width: 44px; text-align: center;
  background: linear-gradient(160deg,rgba(232,101,10,.1),rgba(245,200,66,.15));
  border: 1px solid rgba(232,101,10,.2);
  border-radius: 10px; padding: 5px 4px;
}
.event-date-box .day { display: block; font-size: 1.1rem; font-weight: 800; color: var(--saffron); line-height: 1.1; }
.event-date-box .month { display: block; font-size: .6rem; font-weight: 600; color: var(--grey); letter-spacing: .05em; text-transform: uppercase; }

.event-info .city { font-weight: 700; font-size: .95rem; color: var(--maroon); }
.event-info .desc { font-size: .8rem; color: var(--grey); margin-top: 2px; }

/* ── Bottom bar ───────────────────────────────── */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--bar-h);
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid rgba(232,101,10,.12);
  box-shadow: 0 -6px 28px rgba(26,10,0,.10);
  display: flex; justify-content: space-around; align-items: center;
  padding: 0 8px;
  z-index: 999;
}

.bar-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-decoration: none; color: var(--grey);
  padding: 6px 14px; border-radius: 14px;
  transition: color .2s, background .2s, transform .2s;
  gap: 3px; flex: 1;
}
.bar-btn:hover, .bar-btn:active {
  color: var(--saffron);
  background: rgba(232,101,10,.08);
  transform: translateY(-2px);
}
.bar-btn.call-bar { color: var(--saffron); }
.bar-btn i { font-size: 1.35rem; }
.bar-btn span { font-size: .68rem; font-weight: 600; letter-spacing: .03em; }

/* ── Loading shimmer ──────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.loading-shimmer {
  background: linear-gradient(90deg,
    rgba(232,101,10,.06) 25%,
    rgba(232,101,10,.14) 50%,
    rgba(232,101,10,.06) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  display: block;
}
.event-loading { pointer-events: none; }

.event-empty {
  padding: 24px 22px;
  color: var(--grey);
  font-size: .88rem;
  text-align: center;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 480px) {
  .header { top: 8px; left: 8px; right: 8px; padding: 10px 14px; }
  .logo { font-size: 1rem; }
  .call-btn { padding: 8px 14px; font-size: .8rem; }
  .hero-overlay { padding-bottom: 90px; }
  .artist-card { margin: -48px 12px 28px; border-radius: var(--radius-m); }
  .section { padding: 10px 14px 32px; }
  .events-grid { padding: 0 14px 36px; }
  .bar-btn { padding: 6px 8px; }
  .bar-btn span { font-size: .62rem; }
}

@media (min-width: 768px) {
  .artist-card { padding: 0 48px 40px; }
  .artist-avatar-wrap { margin-top: -70px; }
  .artist-card img.avatar { width: 140px; height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero img#slideImage { transition: none; }
}
