:root {
  --main-blue: #0A3563;
  --light-bg: #ffffff;
  --text-dark: #000;
}

/* CONTENEUR GENERAL */
.mentions-wrapper {
  max-width: 900px;
  margin: 40px auto 30px auto;  
  padding: 0 20px;
  text-align: left; /* tout le texte à gauche */
}

/* TITRE PRINCIPAL AU CENTRE */
.mentions-wrapper h1 {
  font-size: 32px;
  color: #003d66;
  margin: 20px 0 25px 0;
  text-align: center; /* CENTRE LE H1 */
}

/* TITRES SECONDAIRES À GAUCHE */
.mentions-wrapper h2 {
  color: var(--main-blue);
  margin: 25px 0 10px 0;
  font-size: 1.5em;
  font-family: "Segoe UI", sans-serif;
  text-align: left; /* assure qu’ils restent à gauche */
}

/* PARAGRAPHES */
.mentions-wrapper p {
  margin: 10px 0;
  line-height: 1.6;
}


 

footer {
  text-align: center;
  background-color: var(--main-blue);
  color: #fff;
  padding: 20px 10px;
  font-size: 0.9em;
  line-height: 1.4;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
  
}

/* Logo centré dans le footer */
.footer-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  border-radius: 12%;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.visitor-counter {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 10px;
  border: 2px solid #0078d7;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  margin-top: 14px;
  text-align: center;
  
  
  /* RESPONSIVE MOBILE */
@media(max-width: 600px) {
  .mentions-wrapper {
    padding: 10px;
    margin-top: 60px;
  }

  .mentions-wrapper h1 {
    font-size: 26px;
  }
  
}



