/* =============================================================================
   Artist Profile Page
   ============================================================================= */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.artist-hero {
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  overflow: hidden;
}

.artist-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233,69,96,.15) 0%, transparent 60%);
  pointer-events: none;
}

.artist-hero__inner {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  position: relative;
  z-index: 1;
}

.artist-hero__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid rgba(255,255,255,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.artist-hero__photo-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid rgba(255,255,255,.2);
}

.artist-hero__info { flex: 1; min-width: 0; }

.artist-hero__name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-3);
}

.artist-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.artist-hero__tag {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Social links ───────────────────────────────────────────────────────── */
.artist-hero__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.artist-hero__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--social-color, rgba(255,255,255,.15));
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.artist-hero__social-link:hover {
  opacity: .85;
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.artist-hero__social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* ── Bio section ─────────────────────────────────────────────────────────── */
.artist-bio {
  padding: var(--space-16) 0;
  background: #fff;
}

.artist-bio__text {
  font-size: var(--font-size-md);
  line-height: 1.9;
  color: var(--color-text);
  max-width: 760px;
}

/* ── Streaming links ─────────────────────────────────────────────────────── */
.artist-streaming {
  padding: var(--space-10) 0;
  background: var(--color-bg-light);
}

.artist-streaming__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.artist-streaming__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}
.artist-streaming__link:hover { opacity: 0.85; color: #fff; }

/* ── Discography ─────────────────────────────────────────────────────────── */
.artist-discography {
  padding: var(--space-16) 0;
  background: #fff;
}

/* ── Events ──────────────────────────────────────────────────────────────── */
.artist-events {
  padding: var(--space-16) 0;
  background: var(--color-bg-light);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .artist-hero__inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }
  .artist-hero__social { justify-content: center; }
  .artist-hero__tags   { justify-content: center; }
}

/* ── Follow row ─────────────────────────────────────────────────────────────── */
.artist-hero__follow-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

.artist-hero__follower-count {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,.75);
}

.artist-hero__follower-count strong {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.artist-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border-radius: 99px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: var(--font-size-sm);
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}

.artist-follow-btn:hover {
  background: #fff;
  color: var(--color-accent);
  transform: scale(1.04);
}

.artist-follow-btn.is-following {
  background: rgba(255,255,255,.2);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

.artist-follow-btn.is-following:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
}

.artist-follow-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .artist-hero__follow-row { justify-content: center; }
}
