:root {
  --bg: #121415;
  --surface: #1e2022;
  --text: #f5f5f5;
  --muted: #b8bbbe;
  --accent: #1db954;
  --radius: 12px;
  --shadow: 0 4px 20px -1px rgba(0, 0, 0, 0.6);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(18, 20, 21, 0.75), rgba(18, 20, 21, 0.95)),
    url(../images/6c1d7b_039de17416444ed3a561901fdb2f2241.jpg) center/cover no-repeat fixed,
    var(--bg);
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }

/* Banner */
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 1rem 1rem;
  text-align: center;
}
.banner img { width: clamp(80px, 15vw, 160px); height: auto; }
.banner__text h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tagline {
  margin: 0.25rem 0 0;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--muted);
  font-weight: 300;
}

/* Sections genericques */
.intro, .contact {
  max-width: 760px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  text-align: center;
}
.intro h2, .contact h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 1rem 0 0.75rem;
}
.intro p, .contact p { color: var(--muted); margin: 0 0 1rem; }
.contact a { color: var(--text); text-decoration: underline; }
.contact a:hover { color: var(--accent); }

.artist__bio {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
}

/* Artists */
.artists {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}
.artists > h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 2rem;
}
.artists__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.artist {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.artist:hover { transform: translateY(-4px); }
.artist__picture {
  width: clamp(180px, 60%, 280px);
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.artist__name { margin: 0 0 0.25rem; font-size: 1.5rem; }
.artist__hint { margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; }
.artist__links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Platform buttons */
.platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s, transform 0.15s;
}
.platform:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.platform--apple { background: #fff; color: #000; }
.platform--apple:hover { background: #000; color: #fff; }
.platform--spotify { background: #000; color: #fff; }
.platform--spotify:hover { background: var(--accent); color: #000; }

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--muted);
  font-size: 0.875rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
