/* === Mentions légales === */

.mentions-legales {
  padding: 60px 30px;
  background: #fff;
}

.mentions-legales__layout {
  display: grid;
  grid-template-columns: 275px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Sidebar */
.mentions-legales__sidebar {
  position: sticky;
  top: 60px;
}

.mentions-legales__nav {
  position: sticky;
  top: var(--mentions-nav-top, 100px);
  transition: top 0.5s ease;
}

.mentions-legales__nav-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mentions-legales__nav-section {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.mentions-legales__nav-heading a {
  font-weight: 1000;
  display: inline-block;
  margin-bottom: 10px;
}

.mentions-legales__nav-section li a {
  font-size: 16px;
  color: #555;
  text-decoration: none;
  display: block;
  margin: 10px 0;
}

.mentions-legales__nav-section li a:hover {
  color: #000;
}

/* Contenu */
.mentions-legales__content section {
  scroll-margin-top: 100px; /* ajuste la valeur */
}

.mentions-legales__content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.mentions-legales__content h3 {
  margin-top: 40px;
  font-size: 22px;
}

.mentions-legales__content h4 {
  margin-top: 30px;
  font-size: 18px;
}

.mentions-legales__content h5 {
  margin-top: 20px;
  font-size: 15px;
}

.mentions-legales__content p {
  line-height: 1.7;
  color: #444;
}

/* URL */
.mentions-legales-lien {
  color: #1a73e8; 
  text-decoration: none;
  font-weight: 600; 
  transition: color 0.3s ease;
}

.mentions-legales-lien:hover {
  color: #0c4da2;
}

/* === Tableau mentions légales === */

.mentions-legales-tableau {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  font-size: 14px;
  color: #444;
}

/* Entête */
.mentions-legales-tableau thead th {
  background: #e0e0e0; /* plus foncé */
  font-weight: 700;
  color: #000;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #d0d0d0;
}

/* Cellules */
.mentions-legales-tableau th,
.mentions-legales-tableau td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5e5e5;
}

/* Première colonne */
.mentions-legales-tableau tbody th {
  width: 30%;
  font-weight: 600;
  background: #f3f3f3; /* plus clair que l’entête */
  color: #000;
}

/* Dernière ligne sans bordure */
.mentions-legales-tableau tr:last-child th,
.mentions-legales-tableau tr:last-child td {
  border-bottom: none;
}

@media (max-width: 700px) {
  .mentions-legales-tableau,
  .mentions-legales-tableau thead,
  .mentions-legales-tableau tbody,
  .mentions-legales-tableau tr,
  .mentions-legales-tableau th,
  .mentions-legales-tableau td {
    display: block;
    width: 100%;
  }

  .mentions-legales-tableau thead {
    display: none;
  }

  .mentions-legales-tableau tr {
    margin-bottom: 20px;
  }

  .mentions-legales-tableau tbody th {
    background: none;
    padding-bottom: 5px;
  }

  .mentions-legales-tableau td {
    padding-top: 0;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .mentions-legales__layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  .mentions-legales__sidebar {
    display: none;
  }

  .mentions-legales__nav-section {
    display: inline-block; /* Pour que les listes s’alignent horizontalement */
    margin-bottom: 15px;
  }

  .mentions-legales__nav-section li a {
    display: inline-block;
    font-size: 12px;
    padding: 5px 8px;
  }

  .mentions-legales__nav-heading a {
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
  }
}