body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(120deg, #23272e 0%, #181a1f 100%);
}


/************************************ NAVBAR ************************************/
.glass-navbar {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Texte et icônes auto-inversés */
.glass-navbar .nav-link,
.glass-navbar .navbar-brand,
.glass-navbar img {
    mix-blend-mode: difference;
}

/* Icônes SVG */
.nav-icon {
    width: 22px;
    height: 22px;
    filter: invert(1);
}

/* Liens */
.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.navbar-dark .nav-link:hover {
  color: #fff;
}

.nav-icon {
  width: 20px;
  height: 20px;
  filter: invert(1); /* rend l'icône blanche sur navbar dark */
}

.navbar .nav-link.active {
  color: #C6AE4B !important;
  mix-blend-mode: normal;
}



/************************************ SECTION ************************************/
.team-section {
  background: linear-gradient(120deg, #23272e 0%, #181a1f 100%);
  color: #f3f3f3;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  top: 4rem;
}

/* Style des cartes */
.team-card {
  background: #141619;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 32px rgba(0,0,0,0.25);
  width: 100%;
}

.team-card .team-photo {
  width: 100%;
  max-width: 250px;  /* même taille pour toutes les photos */
  height: 250px;     /* fixe la hauteur pour uniformité */
  object-fit: cover;
  border-radius: 16px;
}

.team-card .team-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #C6AE4B;
  margin-bottom: 1rem;
}

.team-card .team-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: justify;
}

/* Responsive : empiler la photo et le texte sur mobile */
@media (max-width: 767.98px) {
  .team-card .team-photo {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
}

/************************************ FOOTER ************************************/
.footer-section {
  background-color: #2b2b2b; /* fond sombre */
  color: #fff;
  margin-top: 4rem;
}

.footer-section small,
.footer-section strong,
.footer-section li {
  color: #fff;
}

/* Liens */
.footer-section ul li {
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-section ul li:hover {
  opacity: 1;
}

/* Logo */
.footer-section img {
  max-width: 140px;
}

/* Social icons */
.social-icons img {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.social-icons .github,
.social-icons .tiktok {
      filter: invert(1); 
}

.social-icons img:hover {
  opacity: 0.7;
}

/* Footer Quick Links */
.footer-section .col-md-4 strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C6AE4B; /* couleur dorée pour le titre */
    margin-bottom: 0.8rem;
}

.footer-section .col-md-4 ul {
    list-style: none; /* supprime les bullets */
    padding: 0;
    margin: 0;
}

.footer-section .col-md-4 ul li {
    margin-bottom: 0.5rem;
}

.footer-section .col-md-4 ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
    position: relative;
}

/* Hover effect */
.footer-section .col-md-4 ul li a:hover {
    color: #C6AE4B; /* couleur au hover */
    padding-left: 5px; /* léger mouvement */
}

/* Retirer complètement les bullets */
/* La pseudo-classe ::before est supprimée */
