.nav-spacer {
  height: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.534); /* blanc semi-transparent */
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}

.footer-logos img.logo-footer {
  height: auto;  
  width: 130px;   
  object-fit: contain;
}

.services-list .service-item {
  padding: 10px 20px;
  border-right: 1px solid #ddd; /* ligne verticale */
}

.services-list .service-item:last-child {
  border-right: none; /* pas de trait après le dernier */
}



  .accordion-button {
    background-color: #fdfdfd;
    color: rgb(70, 69, 69);
  }

  /* Couleur du bouton ouvert */
  .accordion-button:not(.collapsed) {
    background-color: #0d9673;
    color: #fff;
  }

  /* Changer la couleur du body */
  .accordion-body {
    background-color: #e9fff893; 
    color: #000;
  }

  /* MAP*/

  .stats {
      display: flex;
      justify-content: space-around;
      margin-top: 20px;
      padding: 15px;
      background: #f8f9fa;
      border-radius: 5px;
    }
    
    .stat-item {
      text-align: center;
    }
    
    .stat-value {
      font-size: 1.5em;
      font-weight: bold;
      color: #16bb97;
    }
    
    .stat-label {
      color: #666;
      font-size: 0.9em;
    }

.spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none; /* Cache le spinner au départ */
}

.spin {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db; /* Couleur du spinner */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.frog-loader {
  font-size: 3rem;
  animation: breathe 1.5s infinite ease-in-out;
  display: inline-block;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}


.clickable-card {
  text-decoration: none; /* enlève le soulignement */
  color: inherit;        /* garde la couleur du texte originale */
  display: block;        /* permet de prendre toute la largeur du div */
}
.clickable-card:hover {
  cursor: pointer;       /* montre que c’est cliquable */
  background-color: rgba(0,0,0,0.05); /* optionnel : effet hover */
}

/*----------tutos-------------*/

.nav-link.custom-hover:hover {
  color: #8dbd6d !important;
}

.nav-link.toc-section:hover {
  color: #8dbd6d !important;
}


pre {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  overflow-x: auto;
  max-width: 100%;
  box-sizing: border-box;
}

pre code {
  font-family: monospace;
  font-size: 0.95em;
  color: #333;
}


.header {
  transition: top 0.3s; /* pour un mouvement fluide */
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}

.header.hidden {
  top: -200px; /* fait disparaître la navbar vers le haut */
}


.nav-link.active-page {
    color: #8dbd6d; /* Couleur différente pour le lien actif */
    font-weight: bold; /* Optionnel */
}

.uc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 50px auto;
  font-family: sans-serif;
  font-size: 1.2rem;
  color: #333;
}

.gear {
  display: inline-block;
  font-size: 1.5rem;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-secondary {
  background-color: #6c757d;   /* gris Bootstrap */
  border: none;
  border-radius: 5px;
  padding: 10px 25px;
  transition: all 0.3s ease-in-out;

  display: flex;              /* flexbox pour centrage */
  align-items: center;        /* centre verticalement */
  justify-content: center;    /* centre horizontalement */
  text-align: center;         /* centrage texte */

}


.btn-secondary:hover {
  background-color: #5a6268;   /* gris plus foncé */
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* effet hover */
}

.custom-card {
  background-color: #f0f0f000;   /* fond gris */
  padding: 1px;               /* espace intérieur */
  border-radius: 8px;          /* coins arrondis */
  height: 100%;                /* pour que la carte prenne tout l'espace du parent */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-text-small {
  font-size: 0.9rem;           /* texte plus petit et lisible */
}

.card-title {
  font-size: 1.1rem;           /* titre légèrement plus petit */
}

.btn-tertiary {
  background-color: #dce4d8; /* vert FROGS */
  color: #554f4cc4;
  border: none;
  border-radius: 5px;
  padding: 10px 25px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}

.btn-tertiary:hover {
  background-color: #8dbd6d; /* vert plus foncé */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.faq-content {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-logos {
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logos img {
  max-height: 60px;
  height: auto;
  width: auto;
}

  .galaxy-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Pour "Galaxy" */
  }

  .galaxy-sub {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Pour "PROJECT" */
    letter-spacing: 2px; /* un petit espacement comme dans le logo */
  }

  .trait {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ddd;
  }

  .no-style {
    list-style: none;        /* enlève les puces */
    margin: 0;               /* pas d’espace en haut/bas */
    padding-left: 1.5rem;    /* légère indentation optionnelle */
  }

  .no-style li {
    list-style: none;        /* s’assure qu’aucune puce ne revienne */
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
  }