html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #ebe8e5;
  font-family: system-ui, sans-serif;
}

/* ================= SIDEBAR ================= */

.top-sidebar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 70px;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 1000;
}

.sidebar-logo-banane {
  position: absolute;
  left: 20px;
  height: 40px;
}

.sidebar-logo-course {
  position: absolute;
  right: 20px;
  top: 20px;
  bottom: 20px;
  height: calc(100% - 40px);
  object-fit: contain;
}

.sidebar-logo-course img {
  height: 100%;
}

/* Nav desktop */
.sidebar-nav {
  display: flex;
  gap: 20px;
}

.sidebar-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  font-size: 14px;
}

.sidebar-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd900;
  transition: width .25s ease;
}

.sidebar-nav a:hover::after {
  width: 100%;
}

/* Mobile elements */
.sidebar-title-mobile,
.menu-btn {
  display: none;
}

.menu-btn {
  position: absolute;
  right: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 400px;

  background: #fff;
  border-radius: 20px;
  padding: 20px;

  display: none;
  flex-direction: column;
  gap: 16px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 999;
}

/* ================= MOBILE ================= */

@media (max-width: 999px) {

  .top-sidebar {
    width: calc(100% - 30px);
  }

  .sidebar-nav {
    display: none;
  }

  .sidebar-logo-course {
    display: none;
  }

  .sidebar-title-mobile {
    display: block;
    font-weight: 600;
  }

  .menu-btn {
    display: block;
  }
}

/* ///////////////////////////////////////////////////////////////////////////////////// HERO ///////////////////////////////////////////////////////////////////////////////////// */

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: #ebe8e5;
  overflow: hidden;
}

/* Titre */

.hero-title {
  position: absolute;
  top: 180px;          /* position du texte sur PC */
  left: 50%;
  transform: translateX(-50%);

  text-align: center;
  font-size: 100px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 3px;
  color: #000;

  white-space: nowrap;
}

/* Images */

.hero-image-left img {
  position: absolute;
  bottom: 40px;        /* image descendue */
  left: 80px;

  width: 300px;        /* image réduite */
}

.hero-image-right img {
  position: absolute;
  bottom: 40px;
  right: 80px;

  width: 300px;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= TELEPHONE ================= */

@media (max-width: 768px) {

  .hero-title {
    top: 90px;         /* texte en haut */
    font-size: 48px;
    white-space: normal;
  }

  .hero-image-left img {
    bottom: 40px;
    left: 20px;
    width: 160px;
  }

  .hero-image-right img {
    bottom: 40px;
    right: 20px;
    width: 160px;
  }
}

/* ///////////////////////////////////////////////////////////////////////////////////// CONCOURS ///////////////////////////////////////////////////////////////////////////////////// */

* {
  box-sizing: border-box;
}

/* GRAND RECTANGLE */
.concours-block {
  max-width: 1600px;
  width: calc(100% - 60px); /* 30px à gauche + 30px à droite */
  margin: 30px auto;

  background: #ffffff;
  border-radius: 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;

  padding: 40px;
}


/* COLONNE TEXTE */
.ensemble-para-1-concours {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centrage vertical */
  gap: 20px;
}

/* TEXTE — LISIBLE, SOLIDE, JUSTIFIÉ */
.ensemble-para-1-concours p {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;

  font-weight: 600;            /* là c’est vraiment en gras */
  color: #1a1a1a;

  text-align: justify;         /* texte étendu */
  text-justify: inter-word;    /* justification propre */
}

/* COLONNE IMAGE */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* IMAGE */
.concours__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* TEXTE AU SURVOL */
.image-caption {
  position: absolute;
  bottom: -18px;
  right: 0;

  font-size: 12px;
  color: #6b6b6b;

  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.image-wrapper:hover .image-caption {
  opacity: 1;
}

#concours h2 {
  max-width: 1600px;
  width: auto;
  margin: 80px auto 20px; /* espace au-dessus et avant le bloc */

  font-size: 48px;
  font-weight: 800;
  color: #000;

  position: relative;
  display: inline-block;
}

/* Soulignement jaune */
#concours h2::after {
  content: "";
  display: block;

  width: 100%;          /* s'adapte à la largeur du texte */
  height: 6px;
  background: #ffd900;

  margin-top: 12px;
  border-radius: 3px;
}

@media (max-width: 1100px) {
  #concours h2 {
    font-size: 36px;
    margin-top: 60px;
    width: auto;
  }

  #concours h2::after {
    width: 100%;
    height: 5px;
  }
}


/* VERSION TÉLÉPHONE */
@media (max-width: 1100px) {

  .concours-block {
    /* width: 100%; ❌ À SUPPRIMER */
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 24px;
    border-radius: 24px;
  }

  .ensemble-para-1-concours {
    order: 1;
  }

  .image-wrapper {
    order: 2;
  }

  .ensemble-para-1-concours p {
    font-size: 16px;
    line-height: 1.7;
  }

  .image-caption {
    font-size: 11px;
    bottom: -16px;
  }
}



/* ///////////////////////////////////////////////////////////////////////////////////// NOTRE VOITURE ///////////////////////////////////////////////////////////////////////////////////// */

* {
  box-sizing: border-box;
}

/* GRAND RECTANGLE */
.voiture-block {
  max-width: 1600px;
  width: calc(100% - 60px); /* 30px à gauche + 30px à droite */
  margin: 30px auto;

  background: #ffffff;
  border-radius: 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;

  padding: 40px;
}

/* ESPACE ENTRE BLOCS */
.voiture-block {
  margin-bottom: 45px;
}

/* COLONNE TEXTE */
.ensemble-para-1-voiture {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

/* TEXTE — LISIBLE, SOLIDE, JUSTIFIÉ */
.ensemble-para-1-voiture p {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;

  font-weight: 600;
  color: #1a1a1a;

  text-align: justify;
  text-justify: inter-word;
}

/* COLONNE IMAGE */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* IMAGE */
.voiture__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* TEXTE AU SURVOL */
.image-caption {
  position: absolute;
  bottom: -18px;
  right: 0;

  font-size: 12px;
  color: #6b6b6b;

  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.image-wrapper:hover .image-caption {
  opacity: 1;
}

/* BLOC AVEC GRILLE D'IMAGES */
.voiture-grid-block {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  width: 100%;
  min-height: auto;
}

.images-grid .image-wrapper {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* 3 images en portrait à gauche */
.images-grid .image-wrapper:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  height: 200px;
}

.images-grid .image-wrapper:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  height: 200px;
}

.images-grid .image-wrapper:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
  height: 200px;
}

/* Grande image à droite spanning les 3 lignes */
.images-grid .image-wrapper:nth-child(4) {
  grid-column: 2;
  grid-row: 1 / 4;
  height: 620px;
}

/* Réorienter les 3 petites images du voiture-reverse */
.voiture-reverse .images-grid .image-wrapper:nth-child(1) .voiture__image,
.voiture-reverse .images-grid .image-wrapper:nth-child(2) .voiture__image,
.voiture-reverse .images-grid .image-wrapper:nth-child(3) .voiture__image {
  transform: rotate(90deg) !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.images-grid .voiture__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* BLOC IMAGE À DROITE */
.voiture-reverse {
  grid-template-columns: 1fr 1fr;
}

.voiture-reverse .image-wrapper {
  order: 2;
}

.voiture-reverse .ensemble-para-1-concours {
  order: 1;
}

#voiture h2 {
  max-width: 1600px;
  width: auto;
  margin: 80px auto 20px; /* espace au-dessus et avant le bloc */

  font-size: 48px;
  font-weight: 800;
  color: #000;

  position: relative;
  display: inline-block;
}

/* Soulignement jaune */
#voiture h2::after {
  content: "";
  display: block;

  width: 100%;          /* s'adapte à la largeur du texte */
  height: 6px;
  background: #ffd900;

  margin-top: 12px;
  border-radius: 3px;
}

@media (max-width: 1100px) {
  #voiture h2 {
    font-size: 36px;
    margin-top: 60px;
    width: auto;
  }

  #voiture h2::after {
    width: 100%;
    height: 5px;
  }
}

/* VERSION TÉLÉPHONE */
@media (max-width: 1100px) {

  .voiture-block {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 24px;
    border-radius: 24px;
  }

  .voiture-grid-block {
    grid-template-columns: 1fr;
  }

  .images-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ensemble-para-1-voiture {
    order: 1; /* texte en haut */
  }

  .image-wrapper {
    order: 2; /* image en bas */
  }

  .ensemble-para-1-voiture p {
    font-size: 16px;
    line-height: 1.7;
  }

  .image-caption {
    font-size: 11px;
    bottom: -16px;
  }
}

@media (max-width: 768px) {
  .images-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .images-grid .image-wrapper:nth-child(1),
  .images-grid .image-wrapper:nth-child(2),
  .images-grid .image-wrapper:nth-child(3),
  .images-grid .image-wrapper:nth-child(4) {
    grid-column: 1 !important;
    grid-row: auto !important;
    height: 280px !important;
  }
}


/* ///////////////////////////////////////////////////////////////////////////////////// NOTRE EQUIPE ///////////////////////////////////////////////////////////////////////////////////// */

* {
  box-sizing: border-box;
}

/* BLOCK ÉQUIPE */
.equipe-block {
  display: flex;
  justify-content: center;
  margin: 20px;
}

/* CONTENEUR INVISIBLE */
.team-container {
  width: 100%;
  max-width: 1600px;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARTE */
.team-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* PHOTO */
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

/* PRÉNOM */
.team-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

/* ========================= */
/* ZONE RÔLES (PC) */
/* ========================= */

.team-role {
  margin-top: 15px;
  min-height: 48px; /* clé de l’alignement */
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #444444;
}

/* DESCRIPTION */
.team-desc {
  margin-top: 15px;
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 500;
  color: #666666;
}

#equipe h2 {
  max-width: 1600px;
  width: auto;
  margin: 80px auto 20px; /* espace au-dessus et avant le bloc */

  font-size: 48px;
  font-weight: 800;
  color: #000;

  position: relative;
  display: inline-block;
}

/* Soulignement jaune */
#equipe h2::after {
  content: "";
  display: block;

  width: 100%;          /* s'adapte à la largeur du texte */
  height: 6px;
  background: #ffd900;

  margin-top: 12px;
  border-radius: 3px;
}

@media (max-width: 1100px) {
  #equipe h2 {
    font-size: 36px;
    margin-top: 60px;
    width: auto;
  }

  #equipe h2::after {
    width: 100%;
    height: 5px;
  }
}

/* ========================= */
/* RESPONSIVE < 900px */
/* ========================= */

@media (max-width: 900px) {

  .team-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
  }

  .team-card {
    width: 100%;
    max-width: 400px;
  }

  /* on enlève la contrainte inutile sur mobile */
  .team-role {
    min-height: auto;
  }
}


/* ///////////////////////////////////////////////////////////////////////////////////// LE STAND ///////////////////////////////////////////////////////////////////////////////////// */

* {
  box-sizing: border-box;
}

/* GRAND RECTANGLE */
.stand-block {
  max-width: 1600px;
  width: calc(100% - 60px); /* 30px à gauche + 30px à droite */
  margin: 30px auto;

  background: #ffffff;
  border-radius: 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;

  padding: 40px;
}


/* COLONNE TEXTE */
.ensemble-para-1-stand {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centrage vertical */
  gap: 20px;
}

/* TEXTE — LISIBLE, SOLIDE, JUSTIFIÉ */
.ensemble-para-1-stand p {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;

  font-weight: 600;            /* là c'est vraiment en gras */
  color: #1a1a1a;

  text-align: justify;         /* texte étendu */
  text-justify: inter-word;    /* justification propre */
}

/* ============ NOUVEAU BLOC RÉALISATION ============ */

.stand-realization-title {
  max-width: 1600px;
  width: auto;
  margin: 80px auto 20px;

  font-size: 48px;
  font-weight: 800;
  color: #000;

  position: relative;
  display: inline-block;
}

.stand-realization-title::after {
  content: "";
  display: block;

  width: 100%;          /* s'adapte à la largeur du texte */
  height: 6px;
  background: #ffd900;

  margin-top: 12px;
  border-radius: 3px;
}

.stand-realization-block {
  max-width: 1600px;
  width: calc(100% - 60px);
  margin: 30px auto;

  background: #ffffff;
  border-radius: 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;

  padding: 40px;
}

/* COLONNE TEXTE RÉALISATION */
.ensemble-para-2-stand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

/* TEXTE RÉALISATION */
.ensemble-para-2-stand p {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;

  font-weight: 600;
  color: #1a1a1a;

  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 1100px) {
  .stand-realization-title {
    font-size: 36px;
    margin-top: 60px;
    width: auto;
  }

  .stand-realization-title::after {
    width: 100%;
    height: 5px;
  }

  .stand-realization-block {
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 24px;
    border-radius: 24px;
  }

  .ensemble-para-2-stand {
    order: 1;
  }

  .image-wrapper {
    order: 2;
  }

  .ensemble-para-2-stand p {
    font-size: 16px;
    line-height: 1.7;
  }
}

/* COLONNE IMAGE */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* IMAGE */
.stand__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Rogner Stand.jpg pour masquer la personne à gauche */
.stand-realization-block .image-wrapper .stand__image {
  object-position: 85% center !important;
}

/* TEXTE AU SURVOL */
.image-caption {
  position: absolute;
  bottom: -18px;
  right: 0;

  font-size: 12px;
  color: #6b6b6b;

  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.image-wrapper:hover .image-caption {
  opacity: 1;
}

#stand h2 {
  max-width: 1600px;
  width: auto;
  margin: 80px auto 20px; /* espace au-dessus et avant le bloc */

  font-size: 48px;
  font-weight: 800;
  color: #000;

  position: relative;
  display: inline-block;
}

/* Soulignement jaune */
#stand h2::after {
  content: "";
  display: block;

  width: 100%;          /* s'adapte à la largeur du texte */
  height: 6px;
  background: #ffd900;

  margin-top: 12px;
  border-radius: 3px;
}

@media (max-width: 1100px) {
  #stand h2 {
    font-size: 36px;
    margin-top: 60px;
    width: auto;
  }

  #stand h2::after {
    width: 100%;
    height: 5px;
  }
}


/* VERSION TÉLÉPHONE */
@media (max-width: 1100px) {

  .stand-block {
    /* width: 100%; ❌ À SUPPRIMER */
    grid-template-columns: 1fr;
    row-gap: 32px;
    padding: 24px;
    border-radius: 24px;
  }

  .ensemble-para-1-stand {
    order: 1;
  }

  .image-wrapper {
    order: 2;
  }

  .ensemble-para-1-stand p {
    font-size: 16px;
    line-height: 1.7;
  }

  .image-caption {
    font-size: 11px;
    bottom: -16px;
  }
}

/* ///////////////////////////////////////////////////////////////////////////////////// GESTION DE PROJET ///////////////////////////////////////////////////////////////////////////////////// */

.gestion-projet-block {
  max-width: 1600px;
  width: calc(100% - 60px);
  margin: 30px auto;

  background: #ffffff;
  border-radius: 32px;

  padding: 40px;
}

.gestion-projet-intro {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.7;

  font-weight: 500;
  color: #1a1a1a;

  text-align: justify;
  text-justify: inter-word;
}

.gestion-projet-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.gestion-projet-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gestion-projet-column h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #000;

  padding-bottom: 12px;
  border-bottom: 3px solid #ffd900;
}

.gestion-projet-column p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;

  font-weight: 500;
  color: #1a1a1a;

  text-align: justify;
  text-justify: inter-word;
}

@media (max-width: 1100px) {
  .gestion-projet-block {
    padding: 24px;
    border-radius: 24px;
  }

  .gestion-projet-table {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gestion-projet-column h3 {
    font-size: 20px;
  }

  .gestion-projet-column p {
    font-size: 15px;
  }
}

/* Progress bar dans gestion de projet */
.project-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.progress-bar {
  flex: 1;
  height: 14px;
  background: #f0f0f0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.progress-fill {
  height: 100%;
  background: #ffd900;
  width: 0%;
  transition: width 0.4s ease;
}

.progress-label {
  min-width: 120px;
  font-weight: 700;
  color: #1a1a1a;
}

/* ///////////////////////////////////////////////////////////////////////////////////// SPONSORS ///////////////////////////////////////////////////////////////////////////////////// */

.sponsors-wrapper {
  width: 100%;
  overflow: hidden;
  margin: 30px 0;
  /* Pas de limite de largeur (1600px) ici si on veut que ça touche les bords ou on peut le garder centré */
  position: relative;
}

.sponsors-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;

  /* Animation du carousel */
  animation: scroll 30s linear infinite;
  will-change: transform;
}

/* Pause au survol */
.sponsors-wrapper:hover .sponsors-track {
  animation-play-state: paused;
}

/* ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* CARTE SPONSOR */
.sponsor-card {
  /* Taille par défaut (Desktop) */
  width: 160px;
  height: 110px;
  flex-shrink: 0;
  /* Ne pas écraser les cartes */

  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-card:hover {
  transform: scale(1.05);
  /* Petit effet de zoom */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ================= RESPONSIVE ================= */

/* Tablette / Petits écrans */
@media (max-width: 1024px) {
  .sponsor-card {
    width: 140px;
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sponsors-track {
    gap: 16px;
    animation-duration: 20s;
    /* Un peu plus rapide sur mobile visuellement */
  }

  .sponsor-card {
    width: 110px;
    height: 80px;
    padding: 10px;
    border-radius: 16px;
  }
}

/* ///////////////////////////////////////////////////////////////////////////////////// CAROUSEL ÉQUIPES ///////////////////////////////////////////////////////////////////////////////////// */

.equipe-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.equipe-carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.team-container::-webkit-scrollbar {
  height: 8px;
}

.team-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.team-container::-webkit-scrollbar-thumb {
  background: #ffd900;
  border-radius: 10px;
}

.team-container::-webkit-scrollbar-thumb:hover {
  background: #ffdd33;
}

/* Carousel-specific styles (only for the teams carousel) */
#teams-carousel {
  scroll-behavior: smooth;
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  padding: 20px;
}

#teams-carousel .team-card {
  flex: 0 0 280px;
  min-width: 280px;
}

.carousel-arrow {
  background: #ffd900;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .equipe-carousel-wrapper {
    gap: 10px;
  }
}


/* ///////////////////////////////////////////////////////////////////////////////////// NOUS CONTACTER ///////////////////////////////////////////////////////////////////////////////////// */



/* Progress bar dans gestion de projet */
.project-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.progress-bar {
  flex: 1;
  height: 14px;
  background: #f0f0f0;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.progress-fill {
  height: 100%;
  background: #ffd900;
  width: 0%;
  transition: width 0.4s ease;
}

.progress-label {
  min-width: 120px;
  font-weight: 700;
  color: #1a1a1a;
}

/* ///////////////////////////////////////////////////////////////////////////////////// NOUS CONTACTER ///////////////////////////////////////////////////////////////////////////////////// */

#contact {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

#contact label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #1a1a1a;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  font-size: 15px;
  resize: vertical;
}

#contact button[type="submit"] {
  width: max-content;
  background: #ffd900;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 768px) {
  #contact form { padding: 14px; }
  #contact button[type="submit"] { width: 100%; }
}

/* ///////////////////////////////////////////////////////////////////////////////////// CREDITS ///////////////////////////////////////////////////////////////////////////////////// */