/* ==========================================================================
   Sunny the Banjo Witch — Bright Luminous Folk Design System
   Aesthetic: Warm California Sunlit Coastal Folk, Alabaster Linen, Honey Gold & Pacific Mist
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Radiant Bright Color Palette */
  --bg-main: #faf7f2;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f4efe6;
  --bg-surface-warm: #fcfaf7;
  --bg-surface-hover: #ede6d8;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-glass-card: rgba(255, 255, 255, 0.75);

  /* Gold, Sunlit Amber & Coastal Accents */
  --accent-gold: #d97706;
  --accent-gold-light: #f59e0b;
  --accent-gold-dark: #92400e;
  --accent-honey: #b45309;
  --accent-teal: #0d9488;
  --accent-terracotta: #c2410c;
  --accent-glow: rgba(217, 119, 6, 0.2);

  /* Contrast Typography */
  --text-primary: #1c1917;
  --text-secondary: #44403c;
  --text-muted: #78716c;

  --border-subtle: rgba(120, 113, 108, 0.16);
  --border-active: rgba(217, 119, 6, 0.5);

  /* Typography */
  --font-display: 'Cinzel Decorative', 'Cinzel', serif;
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(40, 30, 20, 0.05);
  --shadow-md: 0 8px 24px rgba(40, 30, 20, 0.08);
  --shadow-lg: 0 16px 40px rgba(40, 30, 20, 0.12);
  --shadow-gold: 0 8px 25px rgba(217, 119, 6, 0.25);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Radiant Ambient Background Glows */
body::before {
  content: '';
  position: fixed;
  top: -10vw;
  left: 15vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(250, 247, 242, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -15vw;
  right: 10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.08) 0%, rgba(250, 247, 242, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 1140px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-brand span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.1rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.3rem 0.25rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold-dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
}

.nav-social-pills {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface-elevated);
  color: var(--text-primary);
}

.nav-icon-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-btn-ig {
  background: rgba(225, 48, 108, 0.08);
  border-color: rgba(225, 48, 108, 0.25);
  color: #c13584;
}
.nav-btn-ig:hover {
  background: #e1306c;
  color: #fff;
  border-color: #e1306c;
}

.nav-btn-li {
  background: rgba(10, 102, 194, 0.08);
  border-color: rgba(10, 102, 194, 0.25);
  color: #0a66c2;
}
.nav-btn-li:hover {
  background: #0a66c2;
  color: #fff;
  border-color: #0a66c2;
}

.nav-btn-tree {
  background: rgba(39, 133, 8, 0.08);
  border-color: rgba(39, 133, 8, 0.25);
  color: #278508;
}
.nav-btn-tree:hover {
  background: #278508;
  color: #fff;
  border-color: #278508;
}

.nav-btn-sc {
  background: rgba(255, 85, 0, 0.08);
  border-color: rgba(255, 85, 0, 0.25);
  color: #ff5500;
}
.nav-btn-sc:hover {
  background: #ff5500;
  color: #fff;
  border-color: #ff5500;
}

.nav-btn-vm {
  background: rgba(0, 140, 255, 0.08);
  border-color: rgba(0, 140, 255, 0.25);
  color: #008cff;
}
.nav-btn-vm:hover {
  background: #008cff;
  color: #fff;
  border-color: #008cff;
}

.nav-admin-btn {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  height: 32px;
  padding: 0 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.nav-admin-btn:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}

/* Mobile Hamburger Toggle Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  padding: 0;
  gap: 4px;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(217, 119, 6, 0.08);
  border-color: var(--accent-gold);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@keyframes navDrawerSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Navigation for Tablets & Mobile (Breakpoint 1024px) */
@media (max-width: 1024px) {
  .navbar {
    top: 0.65rem;
    width: 95%;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 40px rgba(28, 25, 23, 0.16);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.35rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
    animation: navDrawerSlide 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.02rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(217, 119, 6, 0.08);
    color: var(--accent-gold-dark);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-social-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border-subtle);
  }

  .nav-icon-btn, .nav-admin-btn {
    width: 100%;
    height: 40px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    top: 0.5rem;
    width: 96%;
    padding: 0.4rem 0.85rem;
  }

  .nav-brand {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }

  .nav-social-pills {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .nav-icon-btn, .nav-admin-btn {
    font-size: 0.8rem;
    height: 38px;
    padding: 0 0.4rem;
  }
}

/* Layout Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 0 1rem 3rem 1rem;
  margin-top: -1rem;
}

.hero-avatar-badge {
  width: 240px;
  height: 240px;
  max-width: 75vw;
  max-height: 75vw;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 16px 45px rgba(217, 119, 6, 0.28), 0 0 0 4px rgba(217, 119, 6, 0.15);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-avatar-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 22px 55px rgba(217, 119, 6, 0.38), 0 0 0 6px rgba(217, 119, 6, 0.25);
}

.hero-avatar-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.3rem;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius-full);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  color: var(--text-primary);
}

.hero-description {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Quick Linktree Banner Widget */
.linktree-widget-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  margin: 3.5rem auto 1rem;
  max-width: 860px;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Next Upcoming Live Show Spotlight */
.next-show-container {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.09) 0%, rgba(26, 20, 15, 0.75) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.next-show-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.next-show-content {
  flex: 1;
  min-width: 280px;
}

#nextShowActions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 175px;
}

@media (max-width: 850px) {
  .next-show-container {
    padding: 1.5rem 1.25rem;
  }

  .next-show-inner {
    flex-direction: column;
    align-items: center;
  }

  .next-show-content {
    min-width: 0;
    width: 100%;
  }

  #nextShowActions {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  #nextShowActions .btn {
    flex: 0 1 auto;
    text-align: center;
  }
}

.linktree-pills {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.linktree-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.linktree-pill:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Gallery & Portfolio Masonry */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.8rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.88) 0%, rgba(28, 25, 23, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-card-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.gallery-card-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Audio Player Section */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .music-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .player-card {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    max-height: none !important;
  }

  .playlist-container {
    height: auto !important;
    max-height: 520px !important;
    min-height: 360px;
    padding: 1.25rem 1.25rem;
  }
}

.player-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 6rem;
  height: 520px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.player-artwork {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.player-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-track-info {
  margin-bottom: 1.5rem;
}

.player-title {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.player-artist {
  color: var(--accent-gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.player-progress-container {
  margin-bottom: 1.2rem;
}

.progress-bar-bg {
  width: 100%;
  height: 7px;
  background: var(--bg-surface-elevated);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

.time-stamps {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.4rem;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.ctrl-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctrl-btn:hover {
  color: var(--accent-gold);
}

.ctrl-btn-play {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.ctrl-btn-play:hover {
  transform: scale(1.06);
}

/* Playlist Queue */
.playlist-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-md);
  height: 520px;
  max-height: 520px;
  display: flex;
  flex-direction: column;
}

.playlist-header {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

#musicTracksList,
#featuredTracksList,
.tracklist-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) rgba(217, 119, 6, 0.08);
}

#musicTracksList::-webkit-scrollbar,
#featuredTracksList::-webkit-scrollbar,
.tracklist-scroll::-webkit-scrollbar {
  width: 8px;
}

#musicTracksList::-webkit-scrollbar-track,
#featuredTracksList::-webkit-scrollbar-track,
.tracklist-scroll::-webkit-scrollbar-track {
  background: rgba(217, 119, 6, 0.06);
  border-radius: var(--radius-full);
}

#musicTracksList::-webkit-scrollbar-thumb,
#featuredTracksList::-webkit-scrollbar-thumb,
.tracklist-scroll::-webkit-scrollbar-thumb {
  background-color: var(--accent-gold);
  border-radius: var(--radius-full);
}

#musicTracksList::-webkit-scrollbar-thumb:hover,
#featuredTracksList::-webkit-scrollbar-thumb:hover,
.tracklist-scroll::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-gold-dark);
}

.track-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  margin-bottom: 0.4rem;
}

.track-item:hover {
  background: var(--bg-surface-elevated);
}

.track-item.active {
  background: var(--bg-surface-elevated);
  border-left: 4px solid var(--accent-gold);
}

.track-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  width: 1.5rem;
}

.track-info {
  flex: 1;
}

.track-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.track-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Live Performances List */
.perf-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.perf-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.perf-date-badge {
  text-align: center;
  padding: 0.7rem 1.4rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: var(--radius-sm);
  margin-right: 1.5rem;
}

.perf-day {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  line-height: 1;
}

.perf-month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.perf-details {
  flex: 1;
}

.perf-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.perf-venue {
  color: var(--accent-gold-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Bio Page */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}

@media (max-width: 850px) {
  .bio-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bio-avatar-card {
    position: relative !important;
    top: auto !important;
  }
}

.bio-avatar-card {
  position: sticky;
  top: 6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.bio-avatar-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.bio-social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.social-link:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}

.bio-content-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
}

.bio-text {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  white-space: pre-line;
}

/* Booking & Inquiry Form */
.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--bg-surface-warm);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.2rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.18);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-meta {
  margin-top: 1.2rem;
  text-align: center;
  max-width: 700px;
}

.lightbox-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
}

.lightbox-exif {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent-gold-light);
  margin-top: 0.4rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold-light);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  padding: 3.5rem 0;
  margin-top: auto;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-special-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.75;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  display: inline-block;
  padding: 0 0.2rem;
}

.footer-special-link:hover {
  opacity: 1;
  color: var(--accent-gold);
  text-decoration: underline;
}
