/* =========================
   CHARTE BISCUITERIE
   ========================= */

:root {
  --red: #7b1e22;      /* rouge du logo */
  --yellow: #f5c14c;   /* jaune du logo */
  --text: #3e2b23;
  --muted: #6f675e;
}

/* ---- Base ---- */
body {
  margin: 0;
  padding: 60px 24px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff; /* fond blanc */
  color: var(--text);
  line-height: 1.6;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Titre principal ---- */
h1 {
  text-align: center;
  color: var(--red);
  font-size: 36px;
  margin-bottom: 40px;
}

/* ---- Logo (première image) ---- */
body > img:first-of-type {
  width: 120px;
  position: absolute;
  top: 20px;
  right: 24px;
}

/* ---- Sous-titres ---- */
h2 {
  color: var(--red);
  font-size: 26px;
  margin-top: 70px;
  margin-bottom: 12px;
  text-align: center;
}

/* ---- Texte ---- */
p {
  max-width: 720px;
  margin: 0 auto 30px auto;
  font-size: 16px;
  color: var(--muted);
  text-align: justify;          /* justification demandée */
  text-justify: inter-word;
}

/* ---- Images (sauf logo) ---- */
body > img:not(:first-of-type) {
  display: block;
  margin: 30px auto 50px auto;
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
}

/* ---- Rappel visuel sous titres ---- */
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--yellow);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  body > img:first-of-type {
    width: 90px;
    top: 16px;
  }

  body > img:not(:first-of-type) {
    max-width: 260px;
  }
}
