/* ─────────────────────────────────────────────
   artist.css — Afro-futurist artist page styles
   Scoped to .artist-page (body class)
───────────────────────────────────────────── */

/* ── Custom properties ── */
:root {
  --gold:       #d4a853;
  --gold-light: #f0c060;
  --purple:     #1a0a2e;
  --purple-mid: #2d1560;
  --purple-hi:  #7c3aed;
  --dark:       #0a0612;
  --text:       #f0ece8;
  --text-muted: #a09090;
  --card-bg:    rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --radius:     12px;
  --radius-lg:  20px;
  --gutter:     clamp(1rem, 4vw, 2rem);
}

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

body.artist-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.hidden { display: none !important; }

/* ── Container ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Section ── */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple-hi));
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* ── Nav ── */
.artist-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(10, 6, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-active {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--gutter) 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.4) saturate(1.2);
  transform: scale(1.05);
  transition: transform 20s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,6,18,0.2) 0%,
    rgba(10,6,18,0.1) 40%,
    rgba(10,6,18,0.9) 80%,
    rgba(10,6,18,1) 100%
  );
}

/* Afro-futurist geometric overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(124,58,237,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 70%, rgba(212,168,83,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 700px;
}

@media (min-width: 640px) {
  .hero-content {
    flex-direction: row;
    text-align: left;
    gap: 3rem;
    align-items: flex-end;
  }
}

/* ── Artist photo / placeholder ── */
.artist-photo-wrap {
  flex-shrink: 0;
}

.artist-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 0 40px rgba(212,168,83,0.3);
}

.artist-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-hi) 50%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(212,168,83,0.5);
  box-shadow: 0 0 40px rgba(124,58,237,0.4), 0 0 80px rgba(212,168,83,0.2);
  position: relative;
  overflow: hidden;
}

/* Geometric pattern overlay on placeholder */
.artist-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    60deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.04) 8px,
    rgba(255,255,255,0.04) 10px
  );
}

.placeholder-initials {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(212,168,83,0.8);
}

/* ── Hero text ── */
.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-name {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, var(--purple-hi) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  font-style: italic;
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.3rem 0.85rem;
  background: rgba(124,58,237,0.2);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Bio section ── */
.bio-section {
  background: linear-gradient(to bottom, var(--dark), rgba(26,10,46,0.6));
}

.bio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.bio-lang-toggle {
  display: flex;
  gap: 0.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  padding: 0.35rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--purple-hi), var(--gold));
  color: #fff;
}

.bio-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.bio-content p:last-child { margin-bottom: 0; }

/* ── Streaming section ── */
.streaming-section {
  background: rgba(26,10,46,0.4);
}

.streaming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.stream-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.stream-card:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-2px);
}

.stream-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.stream-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.spotify-icon { color: #1db954; }
.apple-icon   { color: #fc3c44; }
.yt-icon      { color: #ff0000; }
.sc-icon      { color: #ff5500; }

.stream-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.spotify-embed {
  border-radius: 10px;
  display: block;
}

.stream-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
}

.stream-link-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.apple-btn { background: #fc3c44; color: #fff; }
.yt-btn    { background: #ff0000; color: #fff; }
.sc-btn    { background: #ff5500; color: #fff; }

.stream-coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.coming-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(212,168,83,0.1);
  border: 1px dashed rgba(212,168,83,0.35);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Social section ── */
.social-section {
  background: var(--dark);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  min-width: 220px;
}

.social-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-2px);
}

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

.social-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.social-platform {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-handle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(to bottom, var(--dark), rgba(26,10,46,0.8));
}

.newsletter-card {
  position: relative;
  background: linear-gradient(135deg, rgba(45,21,96,0.6) 0%, rgba(10,6,18,0.8) 100%);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Decorative geometric art in corner */
.newsletter-art {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-art::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.15);
}

.newsletter-body { position: relative; z-index: 1; }

.newsletter-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.newsletter-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 500px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 520px;
  margin-bottom: 0.75rem;
}

.newsletter-input {
  flex: 1 1 240px;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple-hi) 100%);
  border: none;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}

.newsletter-btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.newsletter-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.newsletter-fine {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.newsletter-success {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 0.5rem;
}

/* ── Footer ── */
.artist-footer {
  border-top: 1px solid var(--card-border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
  .hero-content { align-items: center; }
  .hero-tags { justify-content: center; }
  .streaming-grid { grid-template-columns: 1fr; }
  .social-row { flex-direction: column; }
  .social-card { min-width: unset; }
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; }
}
