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

:root {
  --bg:        #0e0c0a;
  --surface:   #1a1714;
  --border:    #2e2a25;
  --gold:      #c9a84c;
  --gold-dim:  #a0813a;
  --text:      #e8e2d9;
  --muted:     #8a8178;
  --radius:    8px;
  --max-w:     820px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header & nav ── */
header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

a.site-title {
  text-decoration: none;
}

.site-title h1 {
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.site-title .subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}

nav { display: flex; gap: 0.25rem; }

nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

nav a:hover { color: var(--text); background: var(--surface); }
nav a.active { color: var(--gold); }

/* ── Main layout ── */
main {
  flex: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 3rem auto;
  padding: 0 2rem;
}

main h2 {
  font-size: 1.7rem;
  font-weight: normal;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.page-intro {
  color: var(--muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* ── Biography page ── */
.bio-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.bio-photo-placeholder {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-intro h2 { margin-bottom: 0.75rem; }

.bio-intro .lead {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}

.bio-body { border-top: 1px solid var(--border); padding-top: 2rem; }
.bio-body p + p { margin-top: 1.2rem; }

/* ── Performances page ── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.15s;
}

.platform-card:hover { transform: translateY(-2px); }

.platform-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.platform-icon svg { width: 100%; height: 100%; }

.platform-name {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.platform-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin-top: 0.1rem;
}

/* Platform accent colours */
.spotify  { --accent: #1DB954; }
.youtube  { --accent: #FF0000; }
.instagram{ --accent: #E1306C; }
.tiktok   { --accent: #69C9D0; }

.platform-card:hover { border-color: var(--accent, var(--gold)); }
.platform-icon { color: var(--accent, var(--gold)); }

/* Upcoming events table */
.upcoming h3 {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
}

.events-table th {
  text-align: left;
  padding: 0.6rem 1rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.events-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.events-table tbody tr:hover { background: var(--surface); }

/* ── Contact page ── */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-icon svg { width: 100%; height: 100%; }

.contact-label {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.contact-value {
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-value:hover { color: var(--text); text-decoration: underline; }

.contact-note {
  color: var(--muted);
  font-style: italic;
  font-size: 0.92rem;
}

/* ── Bio photo ── */
.bio-photo {
  width: 100%;
}

.bio-photo img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}

.bio-intro h2 {
  font-size: 2.4rem;
  font-weight: normal;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.bio-role {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Gallery / Slideshow ── */
.gallery-section {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.gallery-section h2 {
  font-size: 1.7rem;
  font-weight: normal;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.slideshow {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slide-track {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 16 / 9;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-btn:hover { border-color: var(--gold); color: var(--gold); }

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.dot.active { background: var(--gold); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── Embedded video ── */
.video-section {
  margin-top: 2.5rem;
}

.video-section h3 {
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open { display: flex; }

.lb-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 80px);
}

.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.lb-caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-close:hover { opacity: 1; }

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  z-index: 1001;
}

.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

.lb-nav:hover { border-color: var(--gold); color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 600px) {
  header { flex-direction: column; align-items: flex-start; }
  .bio-hero { flex-direction: column; }
  .bio-photo-placeholder { width: 100%; height: 200px; }
}
