
body {
  margin: 0;
  padding: 0;
  background: #f6f0fb; /* fond légèrement lavande, proche du site */
  color: #2b2334; /* texte sombre tirant sur le prune pour la lisibilité */
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

header,
article,
footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
  margin: 0;
  color: #310439; /* violet profond du site */
}

h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #8f78aa; /* violet doux pour la date / sous-titre */
  margin: 0 0 1.5rem;
  text-align: center;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

article {
  padding-bottom: 2rem;
}

p {
  font-size: 1.02rem;
  margin: 0 0 1.1rem;
}

/* Paragraphes numérotés type "1." avec un peu plus de respiration */
p.para-num {
  margin-top: 1.4rem;
  margin-bottom: 1.1rem;
  padding-left: 0.9rem;
  text-indent: -0.5rem; /* laisse le "1." légèrement en avant */
}

footer {
  border-top: 1px solid rgba(49, 4, 57, 0.08);
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: #310439;
  font-family: "Pinyon Script", "Times New Roman", serif;
}

.btn-lien-special {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #c8b5de;
  background: #f9f4ff;
  color: #310439;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  margin: 0.4rem 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.btn-lien-special:hover {
  background: #eadcf7;
  border-color: #b795dd;
}

@media (max-width: 600px) {
  header,
  article,
  footer {
    padding: 0 1.2rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 1.05rem;
  }
}
