:root {
  --bs-primary: #7c3aed;
  --bs-secondary: #a78bfa;
  --bs-body-bg: #050507;
  --bs-body-color: #ece9f8;
  --surface-1: #11101a;
  --surface-2: #171424;
  --surface-border: rgba(197, 174, 255, 0.25);
  --overlay-dark: linear-gradient(120deg, rgba(3, 3, 7, 0.9), rgba(10, 7, 20, 0.62));
  --heading-font: "Playfair Display", Georgia, serif;
  --body-font: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--body-font);
  letter-spacing: 0.01em;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--heading-font);
  letter-spacing: 0.02em;
  color: #f4efff;
}

a {
  color: var(--bs-secondary);
}

a:hover,
a:focus {
  color: #d9caff;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #6d28d9;
  --bs-btn-hover-border-color: #6d28d9;
  --bs-btn-active-bg: #5b21b6;
  --bs-btn-active-border-color: #5b21b6;
}

.site-navbar .navbar-brand {
  font-family: var(--heading-font);
  letter-spacing: 0.08em;
}

.site-navbar .nav-link {
  color: #e9defe;
  opacity: 0.82;
}


.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
  opacity: 1;
  color: #f2eaff;
}

.site-navbar .dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: 0.2em;
}

.site-navbar .artist-dropdown {
  background: rgba(10, 8, 18, 0.98);
  border: 1px solid rgba(183, 151, 255, 0.3);
  border-radius: 0.4rem;
  padding: 0.35rem;
}

.site-navbar .artist-dropdown .dropdown-item {
  color: #ece0ff;
  border-radius: 0.25rem;
  padding: 0.45rem 0.8rem;
}

.site-navbar .artist-dropdown .dropdown-item:hover,
.site-navbar .artist-dropdown .dropdown-item:focus {
  color: #ffffff;
  background: rgba(124, 58, 237, 0.26);
}


.nav-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-social-link {
  color: #f4efff;
  text-decoration: none;
  opacity: 0.92;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-social-link:hover,
.nav-social-link:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.nav-social-link i {
  font-size: 1.25rem;
  line-height: 1;
}

.site-navbar .nav-link.is-active {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.45rem;
  text-decoration-color: var(--bs-primary);
}

.site-navbar .dropdown-item.is-active {
  color: #ffffff;
  background: rgba(124, 58, 237, 0.34);
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.hero > .container {
  position: relative;
  z-index: 2;
}

.hero-sm {
  min-height: 42vh;
}

.section-space {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header p {
  max-width: 40rem;
  color: #cbc2de;
}

.news-card,
.media-tile,
.gallery-tile,
.event-row {
  background: linear-gradient(160deg, rgba(22, 18, 34, 0.95), rgba(15, 13, 23, 0.86));
  border: 1px solid var(--surface-border);
  border-radius: 0.3rem;
  padding: 1.5rem;
}

.content-panel {
  background: linear-gradient(160deg, rgba(22, 18, 34, 0.95), rgba(15, 13, 23, 0.86));
  border: 1px solid var(--surface-border);
  border-radius: 0.3rem;
  padding: 1.5rem;
}

.audio-player-shell audio,
.audio-player-shell video {
  width: 100%;
}

.video-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.cd-cover-block img {
  width: 100%;
  height: auto;
  border-radius: 0.3rem;
}

.news-card h3,
.media-tile h3,
.gallery-tile h3 {
  font-size: 1.35rem;
}

.event-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .event-row {
    grid-template-columns: 180px 1fr auto;
    align-items: center;
  }
}

.media-tile,
.gallery-tile {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.media-tile::before,
.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 13, 0.2), rgba(8, 8, 13, 0.88));
}

.media-tile > *,
.gallery-tile > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  border-top: 1px solid rgba(183, 151, 255, 0.16);
  background: #040406;
}

.site-footer a {
  text-decoration: none;
}

.lead-muted {
  color: #cdc2e0;
}

/* Home page: one-screen, photo-first layout */
body.page-index {
  min-height: 100vh;
  overflow: hidden;
}

body.page-index .hero-home {
  min-height: 100vh;
}

body.page-index .site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: linear-gradient(180deg, rgba(4, 4, 6, 0), rgba(4, 4, 6, 0.9) 45%, rgba(4, 4, 6, 0.98));
  border-top: 1px solid rgba(183, 151, 255, 0.24);
  margin-top: 0 !important;
}

body.page-index .site-footer .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* Hero art direction */
.hero-home {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background-image: url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=80');
  background-position: 78% center;
}

.hero-home::before {
  background:
    linear-gradient(180deg, rgba(4, 4, 7, 0.08) 12%, rgba(4, 4, 7, 0.42) 72%, rgba(2, 2, 4, 0.62) 100%),
    radial-gradient(circle at 82% 18%, rgba(135, 73, 255, 0.24), rgba(135, 73, 255, 0) 42%),
    linear-gradient(118deg, rgba(4, 4, 6, 0.35) 16%, rgba(8, 6, 15, 0.2) 56%, rgba(7, 5, 13, 0.5) 100%);
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 47%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 14% 58%, rgba(124, 58, 237, 0.16), rgba(124, 58, 237, 0) 48%);
}

.hero-home-content {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.hero-home-content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.06;
  background-image: radial-gradient(rgba(255, 255, 255, 0.85) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.hero-copy {
  position: relative;
  padding: 2rem clamp(1.2rem, 2.2vw, 2.2rem);
  border: 1px solid rgba(213, 189, 255, 0.14);
  border-radius: 1.2rem;
  background: linear-gradient(150deg, rgba(10, 8, 16, 0.64), rgba(10, 8, 16, 0.26));
  backdrop-filter: blur(3px);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.4);
}

.hero-author-name {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(2.8rem, 9.5vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: #f4efff;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.72);
}

.hero-kicker {
  color: #d7c6ff;
  letter-spacing: 0.18em;
}

.hero-copy .display-2 {
  font-size: clamp(2.7rem, 7.5vw, 5.8rem);
  letter-spacing: 0.03em;
  line-height: 0.92;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.hero-divider {
  width: min(140px, 34%);
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 208, 255, 0.95), rgba(223, 208, 255, 0.1));
}

.hero-home .lead-muted {
  max-width: 32ch;
  color: rgba(237, 229, 255, 0.9);
  text-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.hero-home .btn-primary {
  border-radius: 999px;
  padding-inline: 1.8rem;
  box-shadow: 0 0 0 rgba(124, 58, 237, 0), 0 12px 26px rgba(40, 10, 77, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-home .btn-primary:hover,
.hero-home .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(152, 95, 255, 0.38), 0 16px 30px rgba(40, 10, 77, 0.52);
}

.hero-home .btn-link {
  color: #ece0ff;
  text-decoration-color: rgba(236, 224, 255, 0.58);
  text-underline-offset: 0.28rem;
}

@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(6, 6, 10, 0.96);
    border-bottom: 1px solid rgba(183, 151, 255, 0.22);
    backdrop-filter: blur(6px);
  }

  .site-navbar .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.85rem 0.95rem 1rem;
    background: rgba(8, 7, 14, 0.98);
    border: 1px solid rgba(183, 151, 255, 0.26);
    border-radius: 0.5rem;
  }

  .site-navbar .nav-link {
    color: #f3ecff;
    opacity: 1;
  }

  .site-navbar .artist-dropdown {
    background: rgba(12, 9, 20, 0.98);
  }

  .site-navbar .nav-social {
    padding-top: 0.6rem;
    border-top: 1px solid rgba(183, 151, 255, 0.2);
  }

  .nav-social {
    margin-top: 0.5rem;
  }

  .hero-home {
    min-height: 88vh;
    background-position: 70% center;
  }

  .hero-home-content {
    padding-top: 7rem;
    padding-bottom: 6.25rem;
  }

  .hero-copy {
    border-radius: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero-home {
    min-height: 86vh;
    background-position: 67% center;
  }

  .hero-copy .display-2 {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }

  .hero-kicker {
    letter-spacing: 0.12em;
  }

  .hero-author-name {
    max-width: 8ch;
    font-size: clamp(2.4rem, 14vw, 3.8rem);
  }

  body.page-index .site-footer {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}

.hero-bio { background-image: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?auto=format&fit=crop&w=1600&q=80'); }
.hero-music { background-image: url('https://images.unsplash.com/photo-1460039230329-eb070fc6c77e?auto=format&fit=crop&w=1600&q=80'); }
.hero-gallery { background-image: url('https://images.unsplash.com/photo-1471478331149-c72f17e33c73?auto=format&fit=crop&w=1600&q=80'); }
.hero-news { background-image: url('https://images.unsplash.com/photo-1503095396549-807759245b35?auto=format&fit=crop&w=1600&q=80'); }
.hero-events { background-image: url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1600&q=80'); }
.hero-courses { background-image: url('https://images.unsplash.com/photo-1459749411175-04bf5292ceea?auto=format&fit=crop&w=1600&q=80'); }
.hero-contact { background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1600&q=80'); }

.media-video { background-image: url('https://images.unsplash.com/photo-1460723237483-7a6dc9d0b212?auto=format&fit=crop&w=1200&q=80'); }
.media-video-2 { background-image: url('https://images.unsplash.com/photo-1514119412350-e174d90d280e?auto=format&fit=crop&w=1200&q=80'); }
.media-audio { background-image: url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1200&q=80'); }
.media-audio-2 { background-image: url('https://images.unsplash.com/photo-1516280030429-27679b3dc9cf?auto=format&fit=crop&w=1200&q=80'); }
.media-voice { background-image: url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1200&q=80'); }
.media-voice-2 { background-image: url('https://images.unsplash.com/photo-1460723237483-7a6dc9d0b212?auto=format&fit=crop&w=1200&q=80'); }
.media-cd { background-image: url('https://images.unsplash.com/photo-1415201364774-f6f0bb35f28f?auto=format&fit=crop&w=1200&q=80'); }
.media-cd-2 { background-image: url('https://images.unsplash.com/photo-1501386761578-eac5c94b800a?auto=format&fit=crop&w=1200&q=80'); }

.gallery-tile {
  min-height: 420px;
}
.gallery-portraits { background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?auto=format&fit=crop&w=1200&q=80'); }
.gallery-artphotos { background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1200&q=80'); }

.navbar-toggler-icon {
  filter: invert(1) brightness(1.4);
}








