/* =========================
   GLOBAL RESET
   ========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   BODY
   ========================= */

body {
  font-family: "Georgia", "Times New Roman", serif;
  background-color: #f4f1ec;
  color: #1e1e1e;
  text-align: center;
  line-height: 1.6;
  padding: 20px;
}

/* =========================
   CONTAINER
   ========================= */

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   MENU DE NAVIGATION CENTRÉ
========================= */
nav {
  display: flex;               /* active le flex */
  justify-content: center;     /* centre les liens horizontalement */
  align-items: center;         /* aligne verticalement si besoin */
  margin-bottom: 40px;
  gap: 10px;                   /* espace entre les liens */
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: #222;
  font-size: 1.1em;
  position: relative;          /* pour le séparateur */
  transition: color 0.3s;
}

/* Séparateur "|" entre les liens sauf le dernier */
nav a:not(:last-child)::after {
  content: "|";
  color: #555;                 /* couleur du séparateur */
  margin-left: 10px;
}

/* Hover */
nav a:hover {
  color: #c33;
}


/* =========================
   HEADERS
   ========================= */

h1 {
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-top: 50px;
  margin-bottom: 20px;
}

/* IMAGES PRINCIPALES UNIFORMES */
.portrait {
  max-width: 320px;          /* largeur identique partout */
  width: 100%;               /* responsive sur mobile */
  height: auto;              /* conserve ratio */
  display: block;
  margin: 30px auto;         /* centré */
  border-radius: 12px;       /* arrondi uniforme */
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); /* ombre douce */
}

}

}


}


/* =========================
   TEXT BLOCKS
   ========================= */

.page-intro {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 17px;
}

.content {
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
}

/* =========================
   LISTS
   ========================= */

ul {
  list-style: none;
  padding: 0;
  margin: 20px auto;
}

li {
  margin-bottom: 8px;
}

/* =========================
   DISCOGRAPHY / LIVE
   ========================= */

.year {
  margin-top: 30px;
  font-weight: bold;
  letter-spacing: 1px;
}

.entry {
  margin-bottom: 6px;
}

/* =========================
   FOOTER
   ========================= */

footer {
  margin-top: 60px;
  font-size: 13px;
  opacity: 0.6;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 600px) {

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  .portrait {
    max-width: 320px;      /* 📱 mobile cohérent */
  }

  .page-intro,
  .content {
    font-size: 16px;
  }
}
/* =========================
   LISTES SANS PUCES (studio / discography)
========================= */

.centered-list, 
.centered-list ul, 
.centered-list ol {
  list-style: none;  /* supprime les puces et numéros */
  padding-left: 0;
  margin-left: 0;
  text-align: center; /* garde le texte centré */
}

.centered-list li {
  margin: 5px 0;      /* espace entre les lignes */
  line-height: 1.5;
}
/* =========================
   SUPPRESSION DES PUCES FORCÉE
========================= */

/* cible toutes les listes dans la page studio */
#studio ul, #studio ol {
  list-style: none !important;  /* supprime absolument les puces */
  padding-left: 0 !important;   /* supprime l’indentation */
  margin-left: 0 !important;
  text-align: center;            /* garde le texte centré */
}

#studio li {
  margin: 5px 0;
  line-height: 1.5;
}

