/* =========================================
   PAGE CONTENT: MENTIONS LÉGALES
   ========================================= */

body {
  background-color: #DD4444 !important; /* Garde ton fond rouge global */
}

.mentions-wrapper {
  max-width: 800px;
  /* Marge de 160px en haut et 140px en bas pour ne pas passer sous tes barres de navigation */
  margin: 160px auto 140px auto; 
  background-color: #FDF5E6; /* Un beau beige crème, très lisible pour du texte long */
  padding: 50px;
  border-radius: 12px;
  color: #222222;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Police standard et stricte pour le juridique */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Petite ombre pour détacher le bloc du fond */
  z-index: 2;
  position: relative;
}

.mentions-wrapper h1 {
  font-family: 'Bodoni 72', serif; /* Ta police signature pour le grand titre */
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
  color: #222222;
  letter-spacing: 2px;
}

.mentions-wrapper h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid #DD4444; /* Une ligne rouge élégante pour séparer les sections */
  padding-bottom: 8px;
  color: #222222;
}

.mentions-wrapper p {
  font-size: 16px;
  line-height: 1.6; /* Aère le texte pour faciliter la lecture */
  margin-bottom: 15px;
}

.mentions-wrapper a {
  color: #DD4444;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mentions-wrapper a:hover {
  text-decoration: underline;
  color: #b33333;
}

/* Rendre le tout responsive pour téléphone */
@media screen and (max-width: 768px) {
  .mentions-wrapper {
    margin: 140px 20px 100px 20px; /* Réduit les marges sur le côté pour les petits écrans */
    padding: 30px;
  }
}