
/* ===== Base + fond fixe ===== */
html, body { height: 100%; }

body {
  font-family: 'Lato', sans-serif;
  margin: 0;
  padding: 0;
  background: none !important;   /* le fond est géré par ::before */
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: center / cover no-repeat url("images/oneFond2.png");
  will-change: transform;
}

.png-text{
  height: 1em;     /* suit la taille du texte environnant */
  width: auto;
  vertical-align: middle; /* ou baseline selon ton rendu */
  background: transparent !important;
}

.Titre-mentions {
  max-width: 900px;
  width: calc(100% - 32px);
  margin: 0 auto;
  text-align: center;
  padding: 0 0;
  margin-top: 30px;
  font-size: 20px;
  color: white;
  word-wrap: break-word;
}

.Texte-mentions {
  max-width: 900px;
  width: calc(100% - 32px);
  margin: 0 auto;
  text-align: left;
  padding: 0 0;
  margin-top: 24px;
  font-size: 18px;
  color: white;
  word-wrap: break-word;
}

.Texte-mentions li {
  margin: .25em 0;    /* réduit l’écart vertical */
  line-height: 1.4;   /* hauteur de ligne normale */
  list-style: none;   /* optionnel si tu ne veux pas de puces */
}

/* listes lisibles et alignées à gauche */
.Texte-mentions ul,
.Texte-mentions2 ul{
  padding-left: 1.2em;       /* indentation des puces */
  margin: .4em 0;
}

.Texte-mentions2 {
  max-width: 900px;
  width: calc(100% - 32px);
  margin: 0 auto;
  text-align: left;
  padding: 0 0;
  margin-top: 16px;
  font-size: 16px;
  color: white;
  word-wrap: break-word;
}

.Texte-mentions2 li {
  margin: .25em 0;    /* réduit l’écart vertical */
  line-height: 1.4;   /* hauteur de ligne normale */
  list-style: disc;   /* optionnel si tu ne veux pas de puces */
}
/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 8px;
  background-color: rgba(15, 21, 39, 1);
  color: white;
  position: fixed;
  bottom: 0; left: 0; right: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .Titre-mentions, .Texte-mentions { margin-bottom: 110px; }
}

@media (max-width: 768px) {
  .Titre-mentions, .Texte-mentions {
    width: 94%;
    padding: 36px 16px;
    margin-bottom: 90px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .Titre-mentions, .Texte-mentions {
    width: 96%;
    padding: 28px 14px;
    margin-bottom: 70px;
    font-size: 18px;
  }
}
