/* ====== Structure générale ====== */
body {
  background-color: #ffffff;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
}


label.required::before {
  content: "* ";
  color: red;
  font-weight: bold;
}

/* Ajoute un * rouge devant tous les labels liés à un champ required */
form .form-group input[required] ~ label::before,
form .form-group select[required] ~ label::before,
form .form-group textarea[required] ~ label::before {
  content: "* ";
  color: red;
  font-weight: bold;
}


/* ====== Scrollbar WebKit (Chrome, Edge, Safari) ====== */
::-webkit-scrollbar {
  width: 14px; /* un peu plus large pour la visibilité */
}

::-webkit-scrollbar-track {
  background: #1F4E40; /* Fond */
}

::-webkit-scrollbar-thumb {
  background-color: #6F8A7B; /* Curseur */
  border-radius: 6px;
  border: 2px solid #1F4E40;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #8FAF9F; /* Éclaircissement au survol */
  transform: scale(1.1);     /* Légère mise en avant */
}

/* ====== Scrollbar Firefox ====== */
html {
  scrollbar-color: #6F8A7B #1F4E40; /* curseur / fond */
  scrollbar-width: auto;            /* plus visible que 'thin' */
}


/* ====== Scrollbar Firefox ====== */
html {
  scrollbar-color: #6F8A7B #1F4E40;
  scrollbar-width: auto;
}




/* ====== Titres ====== */
h1, h2, h3 {
  color: #366150; /* Bleu foncé */
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px; /* Cohérence visuelle */
}
h2 {
  text-align: center;
  font-size: 2em;
}

/* ====== Titre principal ====== */
h2.page-title {
  font-size: 3.2em;
  font-weight: 700;
  color: #366150;          /* Nouvelle couleur du titre */
  text-align: center;
  margin-top: 70px;
  margin-bottom: 60px;
  line-height: 1.3;
  letter-spacing: 1px;
  border-bottom: 2px solid #366150; /* Ligne discrète sous le titre */
  padding-bottom: 10px;
}


/* ====== Liens ====== */
a {
  color: #cc0000; /* Rouge Canon */
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  text-decoration: underline;
  color: #990000;
}

/* ====== Section principale ====== */
main {
  background-color: #fff;
  padding: 40px 15px;
}
main ul {
  padding-left: 20px;
}
main ul li {
  margin-bottom: 8px;
}

/* ====== Carousel ====== */
.carousel-inner img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.carousel-caption {
  background: rgba(0,0,0,0.5);
  padding: 10px;
  border-radius: 6px;
}
.carousel-caption h5 {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}
.carousel-caption p {
  font-size: 0.95em;
  color: #f0f0f0;
}

/* ====== Footer ====== */
footer {
  background-color: #366150; /* Nouvelle couleur du fond du footer */
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

footer a {
  color: #ffffff;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #cccccc;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}
footer ul li {
  display: inline-block;
  margin: 0 10px;
}
footer ul li a {
  color: #ffffff;
  font-size: 1.2em;
}
footer ul li a:hover {
  color: #cccccc;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  h2.page-title {
    font-size: 2.4em;
    margin-top: 100px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  h2.page-title {
    font-size: 2em;
    margin-top: 80px;
    margin-bottom: 30px;
  }
  main .row > div {
    margin-bottom: 30px; /* Carousel au-dessus du texte */
  }
  footer ul li a {
    font-size: 1em; /* Footer compact sur mobile */
  }
  footer {
    padding: 20px 0;
  }
}

.location-img {
  display: block;
  margin: 20px auto;   /* espace autour et centrage */
  max-width: 80%;      /* largeur réduite pour garder l’équilibre */
  height: auto;        /* proportions respectées */
  border-radius: 8px;  /* coins arrondis optionnels */
}


