/* Général */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(45deg, #014e96, #003c74, #000000, #002981);
  color: white;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  text-align: center;
}

.section-container {
  padding: 20px 10%;
}

.section-center {
  padding: 10px 10%;
  text-align: center;
}

/* Mention légales */
.mention {
  font-size: 100px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px;
  gap: 10px;
}

.mention-box {
  background-color: #002981;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px;
  gap: 10px;
}

.hebergeur-box {
  background-color: #002981;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px;
  gap: 10px;
}

.propriete-responsable-box {
  background-color: #002981;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px;
  gap: 10px;
}

/* =============================
   Responsive pour téléphone
   ============================= */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding: 10px;
    line-height: 1.6;
  }

  .section-container {
    padding: 20px 10px;
  }

  .mention, h1, h2, h3 {
    font-size: 20px;
    text-align: center;
  }

  .mention-box,
  .hebergeur-box,
  .propriete-responsable-box {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .mention-text,
  .hebergeur-text,
  .propriete-responsable-text {
    text-align: left;
    font-size: 16px;
  }

  footer {
    font-size: 13px;
    padding: 15px 10px;
    text-align: center;
  }

  footer a {
    display: block;
    margin-top: 8px;
  }
}
