/* Styles généraux */
.header {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #00896C;
  padding: 10px 20px; */
}
.avatar_header {
  max-height:80px;
  max-width:80px;
  border-radius: 100%;
}
.logo img {
  max-height: 200px;
  max-width: auto;
}

.nav .menud {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav .menud li {
  display: inline-block;
}

.nav .menud li a {
  color: #545454;
  text-decoration: none;
  font-weight: bold;
  /* padding: 5px 10px; */
  /* border-radius: 5px; */
}

.nav .menud li a:hover {
  /* background-color: #00896C; */
  color: #545454;
  text-decoration: none;
}

/* Menu burger pour mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background: #545454;
  transition: all 0.3s ease-in-out;
}

/* Masquer le menu horizontal sur mobile */
@media (max-width: 768px) {
  .nav .menud {
      display: none;
      flex-direction: column;
      background-color: #00896C;
      position: absolute;
      top: 60px;
      left: 0;
     
      padding: 20px 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  /* Afficher le menu lorsqu'il est actif */
  .nav .menud.active {
      display: flex;
  }

  .burger {
      display: flex;
  }
}

/* Burger animation pour ouvrir/fermer */
.burger.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
  opacity: 0;
}

.burger.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}








html, body {
  
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column; /* Arrange les enfants en colonne */
}

html {
  background: #e6e9e9;
  background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
  -webkit-font-smoothing: antialiased;
}

body {
  background: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
  color: #545454;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 800px;
  padding: 2em 2em 4em;
}


.menu {
  display: flex;              /* Transformation en flexbox */
  padding:0;                  /* Suppression des marges internes */
  background-color: #C6996F;     /* Ajout de la couleur d'arrière-plan */
  list-style-type: none ;       /* Suppression des puces */
  justify-content: center     /* Alignements des liens dans le menu */
}
.menu a{
  color: #00896C;
  display:block;                /* Transformation en block */
  min-width: 120px;             /* Largeur minimale des liens */   
  
  margin: 0.5rem;               /* Marges externes (1 valeurs = 4 directions) */
  padding: 0.4rem 0;            /* Marges internes (2 valeurs = haut/bas et gauche/droite)*/
  text-align: center;           /* Centrage du texte */   
  background-color: #C6996F;    /* Couleur d'arrière-plan */
  color: #fff;                  /* Couleur du texte */
  text-decoration: none;        /* Suppression du soulignement */
  border: 1px solid #fff;       /* Ajout d'une bordure */
  border-radius: 4px;           /* Arrondis des bordures */
  transition: all 0.5s ;          /* Ajout des effets de transition */
}
.menu a:hover {
background-color: #00896C;
color: #fff;
border-color: #fff;
}
.menu a.actif {    
  background-color: #000 ; 
  color: #1ABC9C ;
  border-color: #1ABC9C ;
}
.menu a:hover,
.menu a:hover.actif{
background-color: #ed2794;
color: #ffe843;
border-color: #ffe843;
}

.header {
display: flex;
justify-content: space-between;
align-items: center;
/*padding: 20px;*/
background-color: #fff;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.footer {
  display: flex; /* Disposition en ligne */
  justify-content: space-between; /* Espace entre les sections */
  align-items: center; /* Alignement vertical */
  
  width: 100%; /* S'assure que le footer occupe toute la largeur */
  margin-top: auto; /* Place le footer en bas de la page */

  padding: 20px; /* Espace intérieur */
  background-color: #f8f9fa; /* Couleur de fond */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1); /* Ombre */
  font-size: 14px; /* Taille du texte */
  color: #333; /* Couleur du texte */
}
.footer {
  margin-top: auto; /* Pousse le footer en bas de la page */
}
.footer-left,
.footer-center,
.footer-right {
  flex: 1; /* Sections prennent le même espace */
  text-align: center; /* Centrer le contenu */
}

.footer-left {
  text-align: left; /* Texte aligné à gauche */
}

.footer-right {
  text-align: right; /* Texte aligné à droite */
}

.footer-nav a {
  text-decoration: none; /* Supprime le soulignement */
  color: #026D7E; /* Couleur des liens */
  margin: 0 5px; /* Espacement entre les liens */
}

.footer-nav a:hover {
  text-decoration: underline; /* Souligne au survol */
}

@media (max-width: 768px) {
  .footer {
      flex-direction: column; /* Empile les sections sur petits écrans */
      text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
      text-align: center; /* Texte centré sur petits écrans */
      margin-bottom: 10px; /* Espacement vertical entre sections */
  }
}




.logo a {
font-size: 24px;
font-weight: bold;
text-decoration: none;
}
.nav ul {
display: flex;
list-style: none;
}

.nav li {
margin-right: 20px;
align-content: center;
}

.nav a {
font-size: 16px;
color: #666;
text-decoration: none;
}

.nav a:hover {
color: #333;
border-bottom: 2px solid #333;
}

h1, h2, h3, h4, h5, h6 {
  
  font-weight: 600;
  line-height: 1.3;
}

h2{color: #026D7E;}

.member-list{
display: flex;
list-style: none;
}
.member-list li{
margin: 0px 0px 0px 20px;
}

h2 {
  margin-top: 1.3em;
}

a {
  color: #026D7E;
}

b, strong {
  font-weight: 600;
}

samp {
  display: none;
}

img {
  animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
  background: transparent;
  /*border: 10px solid rgba(0, 0, 0, 0.12);*/
  /* border-radius: 4px; */
  display: block;
  /*margin: 1.3em auto;
  max-width: 80%;*/
}

.imglogo {
  animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
  background: transparent;
  /*border: 10px solid rgba(0, 0, 0, 0.12);*/
  border-radius: 4px;
  display: block;
  /*margin: 1.3em auto;*/
  max-width: 80%;
}

@keyframes colorize {
  0% {
      -webkit-filter: grayscale(100%);
      filter: grayscale(100%);
  }
  100% {
      -webkit-filter: grayscale(0%);
      filter: grayscale(0%);
  }
}




/* PAGE LOGIN*/
.login_form{width: 50%;
  margin: 0px auto;}

/*MENU BACK OFFICE*/
.menunavbackoffice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.navbackoffice ul {
  display: flex;
  list-style: none;
}

.navbackoffice  li {
  margin-right: 20px;
}
.navbackoffice a {
  font-size: 16px;
  color: #f00;
  text-decoration: none;
}
.navbackoffice a:hover {
  color: #333;
  border-bottom: 2px solid #333;
}





 /* Fixez le bouton sur le côté gauche de la page the button on the left side of the page */
 .open-btn {
  display: flex;
  justify-content: flex-start;
}
/* Stylez et fixez le bouton sur la page */
.open-button {
  background-color: #1c87c9;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
  /*position: fixed;*/
}
/* Positionnez la forme Popup */
.login-popup {
  position: relative;
  text-align: center;
  width: 100%;
}
/* Masquez la forme Popup */
.form-popup {
  display: none;
  position: fixed;
  left: 45%;
  top: 5%;
  transform: translate(-45%, 5%);
  border: 2px solid #666;
  z-index: 9;
}
/* Styles pour le conteneur de la forme */
.form-container {
  max-width: 300px;
  padding: 20px;
  background-color: #fff;
}
/* Largeur complète pour les champs de saisie */
.form-container input[type="text"],
.form-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0 22px 0;
  border: none;
  background: #eee;
}
/* Quand les entrées sont concentrées, faites quelque chose */
.form-container input[type="text"]:focus,
.form-container input[type="password"]:focus {
  background-color: #ddd;
  outline: none;
}
/* Stylez le bouton de connexion */
.form-container .btn {
  background-color: #8ebf42;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
  opacity: 0.8;
}
/* Stylez le bouton pour annuler */
.form-container .cancel {
  background-color: #cc0000;
}
/* Planez les effets pour les boutons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 1;
}


.table_membres_aff {
  text-align:center; 
  margin-left:auto; 
  margin-right:auto; 
  width:100%;
}

.td_membres_aff {text-align:left;
width:50%;}

.div_nos_membres{
  display: grid;
  grid-template-columns: 1fr auto;
        /* margin: 0px auto; */
        text-align: center;
        /* align-content: center; */
        /* justify-content: space-evenly; */
        align-items: center;
        /* justify-items: center;*/
}










/* Styles pour la mise en page */
.container-backoffice {
  flex:1;
  align-items: flex-start; /* Aligne les éléments en haut */
  gap: 20px; /* Espace entre les éléments */
  /*margin-top: 20px;  Espace entre le header et le backoffice */
  

  display: flex; /* Mise en page en ligne pour le menu et le contenu */
  flex-wrap: nowrap; /* Empêche les enfants de passer à la ligne */
  width: 100%;
  /* max-width: 1200px; */
  margin: 10px auto; /* Centrer horizontalement */
  padding-top: 25px;
  /*border: 1px solid #ddd;  Facultatif pour visualiser le conteneur */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow:hidden; /* Empêche le débordement */
  flex-direction:row;
}
.content-backoffice {
  /* flex-wrap:wrap; */
  flex-grow: 1; /* Le contenu occupe tout l'espace restant */
  padding: 20px;
  background-color: #fff; /* Couleur de fond pour différencier */
  overflow: auto; /* Ajoute un défilement si le contenu dépasse */
  box-sizing: border-box;
}
.sidebar-backoffice {
  width: 20%; /* Largeur fixe pour le menu latéral */
  background-color: #f4f4f4; /* Couleur de fond */
  padding: 20px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.sidebar-backoffice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-backoffice h6 {
  color: #026D7E;
}

.sidebar-backoffice ul li {
  /* margin-bottom: 15px; */
 
}

.sidebar-backoffice ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  display: block;
  transition: color 0.3s, background-color 0.3s;
  /* padding: 8px 10px; */
  border-radius: 5px;
}

.sidebar-backoffice ul li a:hover {
  color: #fff;
  background-color: #026D7E;
  max-width: fit-content;
  padding:0 5px;
}

.sidebar-backoffice .btn-danger {
  color: #fff;
  background-color: #dc3545;
  /* border-color: #dc3545; */
  max-width: fit-content;
  padding:5px;
  }





.roadmap-section {
  margin-bottom: 40px;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Taille minimum des cases */
  gap: 20px; /* Espacement entre les cases */
  padding: 20px; /* Ajoute un peu d'espace autour de la grille */
}

.roadmap-card {
  background-color: #f4f4f4; /* Couleur de fond */
  border: 1px solid #ddd; /* Bordure fine */
  border-radius: 10px; /* Coins arrondis */
  padding: 20px; /* Espace intérieur */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Ombre légère */
  display: flex; /* Pour aligner le contenu */
  flex-direction: column; /* Contenu vertical */
  justify-content: space-between; /* Espacement égal */
  height: 300px; /* Hauteur fixe pour toutes les cases */
}

.roadmap-card h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}

.roadmap-card p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

.roadmap-card .status {
  font-weight: bold;
  color: #026D7E;
  margin-top: 10px;
}

.roadmap-card .date {
  font-size: 12px;
  color: #999;
}

.roadmap-card .hours {
  font-size: 12px;
  font-weight: bold;
  color: #333;
}
/* Gère le responsive pour éviter tout débordement */
@media (max-width: 768px) {
  .roadmap-card {
      height: auto; /* Supprime la hauteur fixe sur petits écrans */
  }
}
.fas {
  margin-right: 5px;
  color: #026D7E;
}
