/* Styles pour les pages Mentions légales et Plan du site */

/* Navbar jaune */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFC50A;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.nav-link {
  color: white;
}
.active {
  color: white !important;
  border-bottom: 4px solid white;
}

.TitrePage {
  font-weight: 700;
  color: #333;
}

main h2 {
  font-weight: 600;
  color: #444;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

main p {
  color: #555;
  line-height: 1.7;
}

main section {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

main {
  padding-bottom: 60px; /* espace pour le footer fixe */
}

main section:last-child {
  border-bottom: none;
}

/* Plan du site */
.plan-site-list {
  list-style: none;
  padding-left: 0;
}

.plan-site-item {
  margin-bottom: 1.5rem;
}

.plan-site-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.plan-site-link:hover {
  color: #FFC50A;
}

a.plan-site-link {
  text-decoration: none;
  transition: color 0.2s;
}

a.plan-site-link:hover {
  color: #e6a800;
}

.plan-site-sublist {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.plan-site-sublist li {
  margin-bottom: 0.3rem;
  color: #666;
}

.plan-site-sublist li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.plan-site-sublist li a:hover {
  color: #FFC50A;
}

/* Footer commun */
.FooterCopy {
  background: #f5bd0c;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0.5rem 0;
  text-align: center;
}

.FooterCopy a {
  color: #333;
  text-decoration: none;
}

.FooterCopy a:hover {
  color: #fff;
}

.copyright {
  margin-bottom: 0;
  font-size: 0.85rem;
}