/* Barre de navigation */
.navbar {
  z-index: 1030;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Légère ombre */
}
section {
  scroll-margin-top: 20px; /* Décalage pour ancrage automatique */
}
/* Liens actifs et hover */
.navbar-nav .nav-link.active {
  color: #007bff;
}
.navbar-nav .nav-link:hover {
  color: #0056b3;
}

/* Header */
header {
  background: url('https://preview.redd.it/foz57rolaoq61.png?auto=webp&s=b0f56465a311db50f0740a1040fbc6a429fe8890') no-repeat center center / cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

header .overlay{
  z-index: 1; /* Pour garantir que le contenu reste visible */
  background: rgba(0, 0, 0, 0.5); /* Ajoute une transparence pour rendre le texte lisible */
  padding: 20px;
  border-radius: 10px;
}

/* Membres */
.member-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ddd;
    transition: transform 0.3s ease;
}
/* Effet au survol */
.member-img:hover {
    transform: scale(1.1);
    border-color: #007bff;
}
/* Titres et descriptions */
#membres h4 {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: bold;
}
#membres p {
  margin: 0; /* Enlève l'espace vertical */
  font-size: 1rem;
}
#membres p.text-muted {
  font-weight: bold; /* Met le premier rôle en avant */
  color: #6c757d;
}
#membres p.text-secondary {
  margin: 0;
  color: #aaa; /* Deuxième rôle en couleur secondaire */
}

/* Footer */
footer {
    background-color: #212529;
    color: #fff;
    padding: 20px;
}
footer .footer-logo {
    width: 80px;
    display: block;
    margin: 0 auto;
}




/* Style général pour simuler un embed Discord */
.discord-embed {
    background-color: #2f3136; /* Fond sombre comme Discord */
    border-left: 5px solid #7289da; /* Bordure bleue à gauche */
    border-radius: 5px; /* Coins arrondis */
    padding: 15px;
    color: white;
    font-family: Arial, sans-serif;
    width: 600px;
    margin: 20px auto; /* Centrer l'embed */
  }
  
  .discord-embed .embed-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .discord-embed .embed-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .discord-embed .embed-header-text {
    flex-grow: 1;
  }
  
  .discord-embed .embed-name {
    font-weight: bold;
    color: #ffffff;
  }
  
  .discord-embed .embed-link {
    color: #7289da;
    text-decoration: none;
    font-size: 14px;
  }
  
  .discord-embed .embed-thumbnail {
    width: 100px;
    height: 100px;
    border-radius: 5px;
  }
  
  .discord-embed .embed-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .discord-embed .embed-description {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .discord-embed .embed-fields {
    margin-top: 10px;
  }
  
  .discord-embed .embed-field {
    margin-bottom: 10px;
  }
  
  .discord-embed .field-title {
    font-weight: bold;
    font-size: 14px;
  }
  
  .discord-embed .field-description {
    font-size: 14px;
    color: #99aab5;
  }
  
  .discord-embed .embed-footer {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 12px;
    color: #99aab5;
  }
  
  .discord-embed .footer-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 5px;
  }
  
  .discord-embed .footer-text {
    font-weight: bold;
  }
  
