/* ===== Optimisations lisibilité ===== */
body {
  line-height: 1.7;         /* Plus d'air entre les lignes */
  font-size: 1.05rem;       /* Texte légèrement agrandi */
}

/* ===== Correction image de fond sur smartphone ===== */
@media only screen and (max-width: 768px) {
  body {
    background-attachment: scroll !important;   /* évite les bugs de fixed */
    background-size: cover !important;          /* couvre toute la largeur */
    background-position: center top !important; /* image centrée proprement */
  }
}
