/* Pour ton header */
.site-header {
  position: fixed;
  top: 12px;
  left: 15px;
  right: 15px; /* marge droite ET gauche */
  background-color: #f28c00;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

body {
  padding-top: 75px; /* évite que le menu cache le contenu */
}

/* Conteneur de navigation centré */
.nav-container {
  display: flex;
  justify-content: space-between; /* espace entre logo et menu */
  align-items: center; /* verticalement centré */
  max-width: 1200px; /* largeur max pour centrer la barre sur grand écran */
  margin: 0 auto; /* centre horizontalement le conteneur */
  padding: 0 20px; /* un peu d’espace sur les côtés */
}

.logo {
  color: white;
  font-size: 26px;
  font-weight: bold;
  margin-top: 7px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.menu a:hover {
  text-decoration: underline;
}

.btn-inscription {
  background-color: rgb(16, 1, 1);
  color: #f28c00;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
}

.btn-inscription:hover {
  background-color: #ffe0b3;
  text-decoration: none;
}

/* 📱 MOBILE */
@media screen and (max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 32px;
    color: white;
    cursor: pointer;
    margin: 0 auto;
  }

  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f28c00;
    flex-direction: column;
    text-align: center;
    margin: 0 auto;
  }

  .menu a {
    padding: 15px 0;
    font-size: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  .menu.active {
    display: flex;
  }
}

/* Pour que le logo reste proportionnel */
.logo img {
  height: 50px; /* ajuste selon ton besoin */
}

/* Mobile : logo un peu plus petit */
@media (max-width: 768px) {
  .logo img {
    height: 45px;
  }
}
.site-footer {
  background-color: #2c2c2c;
  color: white;
  padding: 20px 15px 15px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.footer-col h4 {
  margin-bottom: 12px;
  color: #f28c00;
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #ccc;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.article{
  color: rgb(34, 15, 238);
  font-weight: bold;
}

h2{
  color: #1800f2;
  margin: 0 auto;}

  /* CSS */
.membres-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff8f0; /* couleur douce, adaptée à ton orange */
}

.membres-section h2 {
  color: #f28c00;
  margin-bottom: 30px;
}

.membres-container {
  display: flex;
  flex-wrap: wrap; /* les photos passent à la ligne si trop de membres */
  justify-content: center; /* centre les membres horizontalement */
  gap: 30px; /* espace entre les membres */
}

.membre {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px; /* largeur du bloc membre */
}

.membre-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%; /* fait le cercle */
  object-fit: cover;   /* garde la proportion de la photo */
  border: 3px solid #f28c00; /* contour orange */
  box-shadow: 0 2px 6px rgba(232, 10, 17, 0.2); /* légère ombre */
  margin-bottom: 10px;
}

.membre p {
  font-weight: bold;
  color: #333;
  margin: 0;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #ff7a00; /* orange Initia'62 */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#backToTop:hover {
  background-color: #e66f00;
}


.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 50%;
  height: 50%;
  color: black;
}

.modal-content {
  background: #fff;
  margin: 15% auto;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

.transparence {
    max-width: 900px;
    margin: auto;
    padding-top: -75px;
}

.transparence h1 {
    color: #f57c00; /* orange Initia’62 */
    border-bottom: 3px solid #f57c00;
    padding-bottom: 2px;
}

.transparence ul {
    margin-top: 15px;
    padding-left: 20px;
}

.transparence li {
    margin-bottom: 8px;
}

/* Encadré rassurant */
.encadre-confiance {
    margin-top: 25px;
    padding: 15px 20px;
    background-color: #fff3e0;
    border-left: 6px solid #f57c00;
    border-radius: 6px;
}

.encadre-confiance strong {
    color: #e65100;
}

.encadre-confiance p {
    margin: 8px 0 0 0;
}

.membre-texte {
  color: #f28c00; /* orange Initia62 par exemple */
  font-weight: bold;
  }

  /* pour mettre en couleur le texte dans l'encart */
  .modal-content{
    color: blue;
  }

  .rgpd-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
}

.rgpd-content {
  background: #fff;
  max-width: 500px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.rgpd-content h3 {
  margin-top: 0;
  color: #f28c00; /* couleur Initia62 😉 */
}

.rgpd-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  font-weight: bold;
}

.map-container {
  margin-top: 30px;
}

.map-rgpd {
  background: #f9f9f9;
  border: 2px dashed #f28c00;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.map-rgpd p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.map-rgpd button {
  background-color: #f28c00;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
}

.map-rgpd button:hover {
  background-color: #d97700;
}

.map-rgpd a {
  color: #f28c00;
  text-decoration: none;
  font-weight: bold;
}

.lieu-container {
  margin-top: 20px; /* ajuste si besoin */
}

