:root {
  --bg: #fff;               /* main background */
  --bg-soft: #f9f9f9;       /* soft background (for cards, sections) */
  --text: #222;             /* main text */
  --muted: #666;            /* muted text */
  --accent: #ff8c00;        /* accent orange */
  --accent-2: #0055ff;      /* secondary accent blue */
  --shadow: 0 10px 30px rgba(0,0,0,0.1);  /* subtle shadow */
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0)
  );
  box-shadow: var(--shadow);
  color: var(--text);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
}

.nav a:hover {
  opacity: 1;
  color: var(--accent);
}

/* Sections */
.section {
  padding: 40px 0;
  background: var(--bg);
  color: var(--text);
}

.section h2 {
  font-size: 36px;
  margin: 0 0 24px;
  letter-spacing: 0.5px;
}

.welcome-header {
  display: flex;
  align-items: center;
  gap: 24px; /* espace entre les zones */
}

.logo-zone {
  flex-shrink: 0; /* évite que le logo se réduise */
  width: 350px;    /* largeur fixe pour le bloc logo */
}

.logo {
  width: 100%;   /* prend toute la largeur de son conteneur */
  height: auto;
  display: block;
}

.text-zone {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  background: #f9f9f9; /* fond clair très doux */
  padding: 2rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Sur petit écran (par exemple max 640px), on empile en colonne */
@media (max-width: 800px) {
  .text-zone {
    flex-direction: column;
    align-items: flex-start; /* ou center si tu préfères centrer le texte */
  }
}


.text-zone h1 {
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #222;
}

.text-zone p.presentation {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #555;
}

/* Optionnel : un petit effet sur le texte au survol */
.text-zone:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: box-shadow 0.3s ease;
}


/* Artists Section */
.artists-header {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #444; /* ligne de séparation */
  padding-bottom: 0.5rem;
}

.artists-header h2 {
  font-family: 'Antonio', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #222; /* adapte la couleur selon ta palette */
  letter-spacing: 1.5px;
}
.artist-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto;
}

.artist-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 3rem; /* increased padding */
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  flex-wrap: wrap;
  min-height: 100px; /* make sure cards have some height */
}

.artist-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* a bit more spacing between lines */
  max-width: 60%;
}

.artist-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.3rem;
}

.artist-info p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

.artist-card h3 {
  margin: 0;
  color: #111;
  font-weight: 800;
  font-size: 1.75rem; /* bigger font size */
}

.artist-card p {
  margin: 0;
  color: #8a8a8a;
  font-size: 1.1rem; /* bigger font size */
  font-style: italic;
}

/* Container des boutons */
.artist-card > a {
  margin-left: 1rem;
  white-space: nowrap;
}

.artist-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.artist-actions audio {
  height: 50px;
  width: 200px;
  border-radius: 4px;
  outline: none;
  overflow: hidden;
}

.cta {
  background: #000000;
  min-width: 200px;
  text-align: center;
  color: rgb(249, 249, 249);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.cta-disable {
  background: #2d2d2d;
  color: rgb(126, 126, 126);
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
}

.cta:hover {
  background: #e89702;
}

.section.contact {
  padding: 60px 0;
  background: #f9f9f9;
  color: #222;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.section.contact h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.section.contact p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.section.contact a.btn.instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #000000; /* couleur Instagram */
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.section.contact a.btn.instagram:hover,
.section.contact a.btn.instagram:focus {
  background-color: #e89702;
}

.section.contact a.btn.instagram .icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn.mail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #000000;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn.mail:hover,
.btn.mail:focus {
  background-color: #e89702;
  outline: none;
}

.btn.mail .icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.copy-notification {
  margin-top: 1rem;
  color: green;
  font-weight: 600;
  font-size: 1rem;
}


.site-footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* lighter border */
  background-color: #f9f9f9; /* soft light background */
}

.site-footer p {
  margin: 0;
  color: #555; /* darker gray text for readability */
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

