/* ============ Structure globale ============ */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;

  background-size: cover;
  overflow-x: hidden;
}

/* ============ Barre supérieure ============ */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;

  font-weight: bold;
  font-size: 18px;
}

.top-bar .left {
  display: flex;
  align-items: center;
}

.top-bar .left .separator {
  width: 0px;
  height: 30px; /* hauteur de la barre */
  margin: 0 12px; /* espace autour de la barre */
}

.top-bar .right img {
  margin-left: 15px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}



/* ============ Titre principal ============ */
.main-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 10px;
}

.logo img {
  height: 130px;
  margin-right: 20px;
}

.site-title {
  font-size: 110px;
  margin: 0;
}

/* ============ Barre horizontale ============ */
.separator {
  width: 80%;
  margin: 20px auto;
  border: 1px solid rgb(0, 0, 0);
  opacity: 0.5;
}

/* ============ Navigation ============ */
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.nav-links a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ff4b2b;
}

/* ============ Carroussel ============ */
.container {
  width: 100vw; /* pleine largeur viewport */
  max-width: 100%; /* s'assurer que ça ne dépasse pas */
  margin: 0; /* pas de marge */
  overflow: hidden;
  border-radius: 12px; /* optionnel, supprimer arrondi si tu veux */
  box-shadow: none; /* enlever ombre si tu veux */
}

.carousel {
  width: 100%;
  height: 450px; /* tu peux ajuster la hauteur */
  position: relative;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  width: 100%;
}

.slide {
  min-width: 100vw; /* une slide = toute la largeur viewport */
  height: 100%;
}

.slide img {
  width: 100vw; /* l’image prend toute la largeur */
  height: 100%;
  object-fit: cover;
  display: block;
}


.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* pour ne pas bloquer clics sur les images */
}

.carousel-controls button {
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0 15px;
  cursor: pointer;
  pointer-events: auto;
  border-radius: 4px;
  transition: background 0.3s;
}

.carousel-controls button:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-dots {
  text-align: center;
  padding: 10px 0;
}

.carousel-dots button {
  background: #bbb;
  border: none;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots button.active {
  background: #717171;
}



/* ============ Liens============ */
.links-row {
  display: flex;
  justify-content: center; /* centre les liens */
  align-items: center;
  max-width: 800px;
  margin: 25px auto 0;
  padding: 12px 20px;
  background: #f0f4f8; /* fond clair et doux */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  gap: 24px;
}

.nav-links a.active {
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 5px;
  text-decoration: none;
  align-items: center;
}

.links-row a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #5865F2; /* couleur Discord bleu */
  font-weight: 600;
  font-size: 1.15rem;
  padding: 8px 16px;
  border-radius: 8px;
  background: white;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 6px rgba(88, 101, 242, 0.3);
}

.links-row a:hover {
  background-color: #5865F2;
  color: white;
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.7);
}

.links-row a img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
}

.vertical-separator {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, #ccc, #888);
  border-radius: 2px;
}

/* ============ Disboard ============ */

/* Ligne avec les deux cadres (Discord et Disboard) */
.links-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  margin: 40px 20px 60px;
  flex-wrap: wrap;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

/* Cadres */
.discord-invite, .disboard-info {
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(245, 137, 66, 0.3);
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #444;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* police harmonisée */
  font-size: 1rem; /* taille uniforme */
  font-weight: 600; /* poids uniforme, semi-gras */
  line-height: 1.5;
  user-select: none;
  text-align: center;
}

/* Barre verticale */
.vertical-separator {
  width: 4px;
  background-color: #f58942;
  border-radius: 3px;
  margin: 0 20px;
  align-self: center;
  min-height: 250px;
}

/* Discord image */
.discord-image {
  height: 95px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(245, 137, 66, 0.45);
}

/* Texte descriptif (exemple Discord description) */
.discord-description, .disboard-text p {
  font-weight: 600; /* semi-gras */
  font-size: 1rem; /* même taille que les boutons */
  margin-bottom: 20px;
  line-height: 1.4;
  user-select: none;
}

/* Boutons */
.discord-button, .disboard-button {
  background-color: #f58942;
  color: white;
  padding: 12px 26px;
  font-weight: 600; /* semi-gras, même que le texte */
  font-size: 1rem; /* même taille que le texte */
  border-radius: 12px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 6px 14px rgba(245, 137, 66, 0.75);
  transition: background-color 0.3s ease;
  user-select: none;
  margin-top: 15px;
  cursor: pointer;
}

/* Hover buttons */
.discord-button:hover, .disboard-button:hover {
  background-color: #d46b14;
}

/* Discord info container */
.discord-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}



    /* Responsive */
    @media (max-width: 900px) {
      .links-row {
        flex-direction: column;
      }

      .vertical-separator {
        display: none;
      }

      .discord-invite, .disboard-info {
        max-width: 90vw;
        margin: 0 auto 30px;
      }
    }



/* ============ Influenceurs ============ */
.influencer-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.influencer-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left; /* important */
}

.influencer-card.reverse {
  flex-direction: row-reverse;
  text-align: left;
  justify-content: flex-end; /* aligne bien le texte à droite de l’image */
}


.influencer-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.influencer-info {
  flex: 1;
  text-align: left;
}

.influencer-info h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.influencer-info .alias {
  font-weight: normal;
  color: #777;
  font-size: 1rem;
}

.influencer-info p {
  margin: 10px 0 20px;
  color: #555;
  line-height: 1.4;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  height: 28px;
  width: 28px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
  .influencer-card,
  .influencer-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .influencer-info {
    text-align: center;
  }
}

