/* =============================================================================
   Artist Spotlight Section — white panel + parallax banner below
   ============================================================================= */

/* ── White artist card ───────────────────────────────────────────────────────── */
.spotlight-section {
  background: #fff;
  padding: var(--space-16) 0;
}

.spotlight-section__inner {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

/* Artist photo — left side, rounded corners */
.spotlight-section__photo-wrap {
  flex: 0 0 auto;
  width: 280px;
}

.spotlight-section__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

/* Text content — right side */
.spotlight-section__content {
  flex: 1 1 auto;
  min-width: 0;
}

.spotlight-section__name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b1008;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.spotlight-section__bio {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: var(--space-6);
}

.spotlight-section__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: #3b1008;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #3b1008;
  padding-bottom: 2px;
  transition: opacity var(--transition-fast);
}
.spotlight-section__link:hover {
  opacity: 0.7;
  color: #3b1008;
}

/* ── Parallax banner ─────────────────────────────────────────────────────────── */
.spotlight-parallax {
  position: relative;
  /* 100vh height means the full image sweeps through the viewport as you scroll */
  min-height: 70vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Do NOT add overflow:hidden — it breaks background-attachment:fixed */
}

/* Subtle dark overlay */
.spotlight-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.40);
  pointer-events: none;
}

.spotlight-parallax__text {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  padding: 0 var(--space-6);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
  max-width: 700px;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .spotlight-section__inner {
    flex-direction: column;
    gap: var(--space-8);
    text-align: center;
  }
  .spotlight-section__photo-wrap {
    width: 220px;
  }
  .spotlight-section__bio {
    max-width: 100%;
  }
  .spotlight-parallax {
    min-height: 50vw;
    background-attachment: scroll;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .spotlight-section {
    padding: var(--space-10) 0;
  }
  .spotlight-section__photo-wrap {
    width: 180px;
  }
  .spotlight-parallax {
    min-height: 240px;
  }
}
