@import url("https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 2rem;
}

h4 {
  font-family: "Poppins", sans-serif;
}

/* ===== HEADER / NAVBAR ===== */

header {
  background: rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 110px;
}

header nav {
  width: 90%;
  margin: 25px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav img {
  width: 120px;
  height: 50px;
}

header nav a {
  text-decoration: none;
}

header nav ul {
  margin-bottom: 0 !important;
  list-style: none;
}

header nav #navMenu {
  display: flex;
  align-items: center;
  gap: 25px;
}

header nav ul li a {
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.68px;
  line-height: 25px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  padding-bottom: 3px;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #d49d3f !important;
  border-bottom: 2.5px solid #d49d3f;
  transition:
    color 0.2s,
    border-bottom 0.2s;
}

.btns-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btns-nav.btns-display {
  display: none;
}

header nav .cta-desktop {
  min-width: 150px;
  padding: 15px;
  background-color: #d49d3f;
  border: none;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: -0.68px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

header nav .cta-desktop.btn-inscription {
  background: transparent !important;
  color: #d49d3f !important;
  border: 2px solid #d49d3f !important;
  transition:
    background 0.3s,
    color 0.3s;
}

/* ===== SOUS-MENUS DESKTOP ===== */

.nav-drop {
  position: relative;
}

.nav-drop__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-drop__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s ease;
}

.nav-drop:hover .nav-drop__arrow {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Zone tampon transparente = espace "détaché" entre navbar et menu */
.nav-drop__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 4px);
  padding-top: 45px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  z-index: 10;
}

.nav-drop:hover .nav-drop__menu,
.nav-drop:focus-within .nav-drop__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Carte flottante détachée, sans bordure */
.nav-drop__menu ul {
  position: relative;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  border: none;
  outline: none;
  background: rgba(18, 55, 121, 1);
}

.nav-drop__menu ul li {
  display: block;
  width: 100%;
  border-bottom: 1px solid rgb(255, 255, 255, 0.4);
}

.nav-drop__menu ul li:last-child {
  border-bottom: none;
}

.nav-drop__menu ul li a {
  color: rgb(255, 255, 255, 1);
  font-size: 15px;
  letter-spacing: -0.3px;
  line-height: 25px;
  display: block;
  padding: 14px 25px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.nav-drop__menu ul li a:hover {
  color: #d49d3f !important;
  border: none !important;
}

/* ===== SOUS-MENUS MOBILE (accordéon pro) ===== */


.nav-drop-mobile .dropdown-toggle {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.68px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0px !important;
  border-bottom: none !important;
  cursor: pointer;
}

.nav-drop-mobile .dropdown-toggle::after {
  display: none !important;
  content: none !important;
}

.nav-drop-mobile .dropdown-toggle .nav-drop__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nav-drop-mobile .dropdown-toggle[aria-expanded="true"] {
  color: #d49d3f;
}

.nav-drop-mobile .dropdown-toggle[aria-expanded="true"] .nav-drop__arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
  border-color: #d49d3f;
}

.nav-drop-mobile__menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  list-style: none;
  padding-left: 0;
  margin: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
}

.nav-drop-mobile__menu.is-open {
  max-height: 500px;
  opacity: 1;
}

.nav-drop-mobile__menu li {
  padding: 0;
  margin-left: 4px;
}

.nav-drop-mobile__menu li:last-child {
  padding-bottom: 6px;
}

.nav-drop-mobile__menu li a {
  display: block;
  padding: 12px 0 12px 20px;
  font-size: 13.5px;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: none;
  font-weight: 500;
  transition: color 0.2s ease, padding-left 0.2s ease;
  border-bottom: none !important;
}

.nav-drop-mobile__menu li a:hover {
  color: #d49d3f !important;
  padding-left: 26px;
  border-bottom: none !important;
}

.nav-drop-mobile__menu li a:active {
  color: #d49d3f !important;
  padding-left: 26px;
  border-bottom: 1px solid #d49d3f !important;
}

header nav .cta-desktop.btn-inscription:hover {
  background: #d49d3f !important;
  color: #fff !important;
}



/* Les bouton CTA */

.btn-main,
.btn-register,
.btn-opportunites,
.apropos-button,
.btn-thematiques,
.partenaire-button {
  background-color: #d49d3f;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none;
  font-size: 17px;
  letter-spacing: -0.68px;
  line-height: 22px;
  padding: 14px 38px;
  border: none;
  border-radius: 0;
  transition:
    background 0.3s,
    color 0.3s;
  box-shadow: none;
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  border: 2px solid #d49d3f !important;
}



.bg-yellow {
  background-color: #d49d3f !important;
  color: #fff !important;
}

.btn-inscription-cta {
  background: transparent !important;
  color: #d49d3f !important;
  border: 2px solid #d49d3f !important;
  transition:
    background 0.3s,
    color 0.3s;
}

.btn-inscription-cta:hover {
  background: #d49d3f !important;
  color: #fff !important;
  border-color: #d49d3f !important;
}

/* Hero section */
.banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 900px !important;
}


.swiper {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 900px !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  min-height: 900px !important;
}

.swiper-slide {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 900px !important;
  overflow: hidden;
  transition:
    opacity 0.7s cubic-bezier(0.4, 1.3, 0.5, 1),
    transform 0.7s cubic-bezier(0.4, 1.3, 0.5, 1);
  justify-content: start;
  align-items: center;
  padding: 80px 150px;
  color: white;
  text-align: left;
  flex-direction: row;
  z-index: 0;
  display: flex;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 1;
}

.swiper-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  will-change: transform;
}

.swiper-slide {
  position: relative;
}

.banner-text {
  position: relative;
  z-index: 2;
}

.banner-text h2 {
  font-size: 3.7rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-top: 30px;
}

.banner-text p {
  max-width: 90%;
  color: rgb(249, 247, 245, 0.8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 15px;
}


.slide.cta {
  justify-content: start;
  align-items: center;
  text-align: start;
}

.slide.cta .banner-text {
  max-width: 60%;
}

.cta-button {
  display: inline-block;
  margin-top: 25px;
  background-color: #d49d3f;
  color: #0c1e35;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background: #fff;
  color: #d49d3f;
}

.banner-text {
  position: relative;
  z-index: 1;
  background: none;
  padding-top: 80px;
  padding-right: 60px;
  padding-bottom: 0;
  border-radius: 0;
  color: #fff;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}

.banner-text.bfd2026-text {
  padding-top: 100px !important;
  padding-left: 0px !important;
}

.location {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

/* Style pour le lieu de l'événement */
.event-location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-location i {
  font-size: 1.5rem;
  color: #fcae28;
}

.text-yellow {
  font-size: 90px !important;
  color: #d49d3f;
}

.event-location span {
  color: #f9f7f5;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.80px;
  line-height: 30px;
}

/* Boutons next/prev slider stylés */
.swiper-button-next::before {
  content: "";
  display: inline-block;
}

.swiper-button-next i.fa-angle-double-right {
  font-size: 1.4em;
  color: #fff;
  vertical-align: middle;
}

.swiper-button-prev::before {
  content: "";
  display: inline-block;
}

.swiper-button-prev i.fa-angle-double-left {
  font-size: 1.4em;
  color: #fff;
  vertical-align: middle;
}

.swiper-button-next,
.swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d49d3f;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  font-size: 1.2em;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #fff;
  color: #d49d3f;
  transform: scale(1.08);
}

.swiper-button-next:hover i.fa-angle-double-right,
.swiper-button-prev:hover i.fa-angle-double-left {
  color: #d49d3f;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.loc-time {
  display: flex;
  align-items: stretch;
  gap: 15px;
}

.banner-countdown {
  display: flex;
  gap: 18px;
  margin-top: 25px;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 16px;
  border: 0.5px solid rgb(252, 174, 40, 0.7);
}


.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
  background-color: rgba(128, 128, 128, 0.2);
  padding: 15px 25px;
  border-radius: 16px;
}

.countdown-item span {
  display: block;
}

#days,
#hours,
#minutes,
#seconds {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd600;
  letter-spacing: 1px;
}

.countdown-item .label {
  font-size: 15px;
  color: #fff;
  margin-top: 2px;
  text-transform: lowercase;
  letter-spacing: -0.60px;
  line-height: 25px;
}


/* --- Section À propos UX --- */

.apropos-section {
  background-color: #fff;
  padding: 100px 0 40px 0;
}

.apropos-container {
  display: flex;
  align-items: stretch;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  margin-bottom: 50px;
}

.apropos-section h2 {
  text-align: start;
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.78px;
  line-height: 49px;
  display: block;
}

h2 {
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.78px;
  line-height: 49px;
  display: block;
}

.apropos-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px 0px;
}

.apropos-text {
  flex: 1 1 0;
  min-width: 340px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 30px 0;
  height: 100%;
}

.apropos-image {
  flex: 1 1 0;
  min-width: 320px;
  max-height: 500px;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  height: 85%;
}

.apropos-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;

  display: block;
}

.apropos-text p {
  font-size: 18px;
  color: #222;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin-bottom: 32px;
  font-weight: 400;
}

.apropos-button {
  display: inline-block;
  background-color: #fff;
  color: #c7a25a;
  border: 2px solid #c7a25a;
  padding: 14px 38px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: none;
  transition:
    background 0.2s,
    color 0.2s,
    border 0.2s;
  margin-top: 10px;
}

.apropos-button:hover {
  background-color: #c7a25a;
  color: #fff;
  border: 2px solid #c7a25a;
}

/* --- Section Partenaire UX --- */

.partenaire-section {
  padding: 90px 0 70px 0;
  position: relative;
}

.partenaire-title {
  text-align: left;
  color: #010b40;
  font-size: 32px;
  letter-spacing: -0.64px;
  line-height: 37px;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.partenaire-container {
  display: flex;
  align-items: stretch;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.partenaires-list {
  display: flex;
  padding-bottom: 32px;
  padding-top: 20px;
  justify-content: space-between;
}

.partenaires-list .logo {
  width: 40%;
}

.partenaires-list .logo img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.partenaires-list .text {
  width: 60%;
}

.partenaires-list .text p {
  padding-bottom: 15px;
}

.partenaires-list .text h6 {
  font-size: 2rem;
  color: #082a46;
}

.partenaires-list .text .hr {
  width: 100px;
  height: 5px;
  background-color: #c7a25a;
  margin-top: 10px;
  margin-bottom: 20px;
}

.partenaires-list .text a {
  text-decoration: none;
  color: #c7a25a;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 20px;
}

.partenaire-image {
  flex: 1 1 0;
  min-width: 320px;
  max-height: 480px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
}

.partenaire-image img {
  width: 100%;
  height: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

.partenaire-text {
  flex: 1 1 0;
  min-width: 50%;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 30px 0;
  color: #222222;
  height: 100%;
}

.partenaire-text p {
  font-size: 18px;
  color: #222;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin-bottom: 30px;
}

/* --- Section Partenaires (CSS Keyframe Marquee) --- */
.partner-logo-slider {
  padding: 60px 0;
  overflow: hidden;
}

.partner-logo-slider h2 {
  font-size: 39px;
  font-weight: 800;
  letter-spacing: -0.78px;
  line-height: 49px;
  color: #082a46;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

.partner-logo-slider h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px auto;
}

.logo-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Effet de fondu (masque) */
.logo-slider-container::before,
.logo-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 150px;
  z-index: 2;
}

/* Fondu à gauche */
.logo-slider-container::before {
  left: 0;
  background: linear-gradient(to right,
      #f8f9fa 20%,
      rgba(248, 249, 250, 0) 100%);
}

/* Fondu à droite */
.logo-slider-container::after {
  right: 0;
  background: linear-gradient(to left,
      #f8f9fa 20%,
      rgba(248, 249, 250, 0) 100%);
}

/* Piste qui contient les logos (les deux sets) */
.logo-slider-track {
  display: flex;
  width: max-content;

  /* Animation: 80s pour 46 logos semble fluide. Ajustez si besoin. */
  animation: scroll 80s linear infinite;
  -webkit-animation: scroll 80s linear infinite;
}

/* Style de chaque logo */
.logo-slider-track img {
  height: 100px;
  width: auto;
  margin: 0 40px;
}

/* L'animation de défilement */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    /* Déplace la piste de 50% de sa largeur (la taille d'un set de logos) */
    transform: translateX(-50%);
  }
}

/* Opportunites Section UX Designer */

.opportunites-header {
  width: 100%;
  max-width: 1200px;
  text-align: start;
  margin-bottom: 10px;
}

.opportunites-header h2 {
  color: #082a46;
  font-size: 32px;
  letter-spacing: 42px;
  letter-spacing: -0.64px;
  margin-bottom: 10px;
  text-align: center;
}

.opportunites-header p {
  font-size: 1.18rem;
  color: #0c1e35;
  line-height: 1.7;
  margin-bottom: 28px;
}

.opportunites-header .btn-opportunites {
  margin-top: 20px;
  margin-bottom: 70px;
}

.opportunites-section {
  position: relative;
  padding: 60px 0;
  color: #fff;
  text-align: center;
  min-height: 420px;
  height: 510px;
  max-width: 1600px;
  width: 100%;
  margin: 40px auto;
  overflow: hidden;
  background: none;
  box-shadow: 0 8px 32px rgba(17, 43, 68, 0.13);
}

.opportunites-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.opportunites-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 43, 68, 0.45);
  z-index: 1;
}

.opportunites-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 420px;
  padding: 0 40px;
  text-align: center;
}

.opportunites-header {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin-bottom: 0;
}

.opportunites-header h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: 42px;
  letter-spacing: -0.64px;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.opportunites-header p {
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.80px;
  line-height: 30px;
  margin-bottom: 38px;
  font-weight: 400;
}

.btn-opportunites {
  display: inline-block;
  background-color: #d49d3f;
  color: #fff;

  font-weight: bold;
  font-size: 1.18rem;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    background 0.2s,
    color 0.2s;
  border: none;
  margin-top: 10px;
  letter-spacing: 1px;
}

.btn-opportunites:hover {
  background-color: #b9832c;
  color: #fff;
}

/* --- Section Thématiques UX --- */
.thematiques-section {
  width: 100%;
  background: #f8f9fa;
  padding: 48px 32px;
  margin: 0 auto;
}

.thematiques-section h2 {
  text-align: center;
  text-transform: uppercase;
  color: #082a46;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

.thematiques-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 10px auto 10px;
}

.thematiques-flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.thematiques-theme-block {
  display: block;
  /* flex-wrap: wrap; */
  align-items: center;
  gap: 8px;
  font-size: 25px;
  font-weight: 600;
  color: #000;
  text-align: center;

  margin-bottom: 24px;
}

.theme-label {
  color: #222222;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #010b40;
}

.thematiques-cards-block {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thematiques-btn {
  margin: 32px auto 0 auto;
  display: block;
}

.thematiques-theme {
  flex: 1 1 0;
  text-align: left;
  margin-bottom: 0;
  max-width: 420px;
  align-self: flex-start;
  margin-left: 0;
}

.thematiques-theme .theme-label {
  color: #0c1e35;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 18px;
  text-transform: capitalize;
  display: block;
  letter-spacing: 0.5px;
  text-align: left;
}

.thematiques-section .cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.thematiques-section .card {
  position: relative;
  border-radius: 20px;
  color: white;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.thematiques-section .cards-row {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.thematiques-section .cards-row-center {
  justify-content: center;
  flex-wrap: wrap;
}

.card:hover {
  box-shadow:
    0 12px 32px rgba(17, 43, 68, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px) scale(1.03);
  z-index: 2;
}

.card:hover .card-title {
  color: #c7a25a;
  letter-spacing: 0.5px;
  transition:
    color 0.2s,
    letter-spacing 0.2s;
}

.thematiques-section .card-title {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}

.thematiques-section .card-ai.double-card {
  flex: 0 0 calc(66.66% - 12px);
  /* 2/3 de la ligne, moins la moitié du gap */
}

.thematiques-section .card-innovation {
  flex: 0 0 calc(33.33% - 12px);
  /* 1/3 de la ligne */
}

/* Deuxième ligne : 3 cartes égales */
.thematiques-section .cards-row-center .card {
  flex: 1 1 calc(33.33% - 16px);
}

.thematiques-section .card-ai {
  background-image: url("../images/home/card-ai.webp");
}

.thematiques-section .card-innovation {
  background-image: url("../images/home/card-innovation.webp");
}

.thematiques-section .card-invest {
  background-image: url("../images/home/card-invest.webp");
}

.thematiques-section .card-regulation {
  background-image: url("../images/home/card-regulation.webp");
}

.thematiques-section .card-inclusion {
  background-image: url("../images/home/card-inclusion.webp");
}

.thematiques-section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 53, 0.55);
  z-index: 0;
}

.thematiques-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 32px 24px;
  justify-items: center;
  align-items: stretch;
}

.thematiques-section .title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #010b40;
  margin-bottom: 12px;
}

/* Join us section */
.join-us {
  position: relative;
  width: 100%;
  min-height: 340px;
  padding: 80px 0;
  background: url("../images/cta/5.webp") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.join-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 30, 53, 0.7);
  z-index: 1;
}

.join-us-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.join-us-content h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: -0.64px;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.join-us-content p {
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.80px;
  line-height: 30px;
  margin-bottom: 38px;
  font-weight: 400;
}

.join-us .btn-register {
  background-color: #d49d3f;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 16px 44px;
  border-radius: 30px;
  transition:
    background 0.3s,
    color 0.3s;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-top: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 1rem;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.join-us .btn-register:hover {
  background-color: #b98228;
  color: #fff !important;
}

.banner-text .btn-main {
  margin-top: 28px;
}

/* Footer global */
/*footer*/

footer {
  width: 100%;
  min-height: 60vh;
  background: #123779;
  padding-top: 80px;
  padding-bottom: 10px;
}

footer .container {
  width: 85%;
  margin: auto;
}

footer .container .footer-content {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

footer .container .footer-content .title {
  margin-bottom: 10px;
}

footer .container .footer-content .img {
  width: 15%;
}

footer .container .footer-content img {
  width: 160px;
  height: auto;
}


footer .container .mailgenerale {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .container .mailgenerale a {
  color: white;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
}

footer .container strong {
  color: white;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: -0.80px;
  line-height: 30px;
}

footer .container .link {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .container .link div {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
}

footer .container .link a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 26px;
}

footer .container .reseaux {
  width: 20%;
}

footer .container .reseaux .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

footer .container .reseaux .social-icons a {
  background: #fff2;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

footer .container .reseaux .social-icons a:hover {
  background: #d49d3f;
  color: #fff;
}

footer .container .newsletter {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 50px;
  margin-bottom: 50px;
}

footer .container .newsletter h2 {
  color: white;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.60px;
  line-height: 40px;
}

footer .container .newsletter input {
  width: 90%;
  background-color: transparent;
  border: transparent;
  border-bottom: 2px solid white;
  padding: 15px;
  padding-left: 0px;
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.64px;
  line-height: 26px;
  outline: none;
}

footer .container .newsletter input::placeholder {
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
  letter-spacing: -0.64px;
  line-height: 26px;
}

footer .container .newsletter button {
  background-color: transparent;
  border: none;
  color: white;
  margin-left: -80px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

footer hr {
  border: none;
  border-top: 1.5px solid #fff2;
  margin: 24px 0 0 0;
  opacity: 0.7;
}

.footer-bottom {
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}

.footer-bottom-left {
  text-align: left;
}

.footer-bottom-right {
  text-align: right;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 8px;
  margin-right: 8px;
  transition: color 0.2s;
}

.footer-bottom p {
  color: #fff;
  text-decoration: none;
  margin-left: 8px;
  margin-right: 8px;
  transition: color 0.2s;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: -0.36px;
  line-height: 28px;
}

.footer-bottom a:hover {
  color: #d49d3f;
}

.hero-about {
  position: relative;
  min-height: 45vh;
  width: 100%;
  background: url("../images/bg/about-hero-section.webp") center right/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  height: 80vh;
}

.hero-bfd-2026 {
  position: relative;
  min-height: 700px;
  width: 100%;
  background: url("../images/bg/bg-2026-02.webp") center right/cover no-repeat;
  overflow: hidden;
  padding-left: 150px;
}


.hero-bfd-2026 .event-location span {
  font-size: 22px;
  letter-spacing: -0.44px;
  line-height: 32px;
}

.hero-bfd-2026 .hero-bfd-2026-content {
  margin-top: 350px;
  gap: 30px;
}

.hero-bfd-2026 .hero-bfd-2026-content .txt h2 {
  font-size: 3.7rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.98px;
  line-height: 59px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.hero-bfd-2026 .hero-bfd-2026-content .txt h2 span {
  color: #fcae28;
  font-size: 50px;
  letter-spacing: -1px;
  line-height: 60px;
}

.hero-bfd-2026 .days {
  margin-top: 20px;
}

.hero-bfd-2026 .days span {
  color: #fff;
  font-weight: 500;
  font-size: 25px;
  letter-spacing: -0.5px;
  line-height: 35px;
}



.hero-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* background: url('images/Section-hero.png') center right/cover no-repeat; */
  opacity: 1;
  pointer-events: none;
}

.hero-about-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-about-title {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -1.2px;
  line-height: 70px;
  text-transform: uppercase;
}

.hero-about-desc {
  color: #f9f7f5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 400;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 28px;
  margin-top: 20px;
}

.content-about {
  width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  margin: 100px auto;
}

.about-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title {
  align-self: flex-start;
  color: #082a46;
  font-size: 39px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
}

.about-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px 0px;
}

.about-text {
  text-align: left;
  color: #222;
  margin: 0 auto;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  font-weight: 400;
}

/* Participants */

.scrolling-cards {
  background: #f9f9f9;
  padding: 60px 20px 100px 20px;
  position: relative;
  color: #082a46;
}

.scrolling-cards .section-title {
  text-align: center;
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
}

.gala-slider-section .section-intro {
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  margin: 0 0 50px 0;
}

.scrolling-cards .section-intro {
  text-align: center;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
}

.cards-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cards-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
}

.cards-row-center {
  justify-content: center;
  gap: 32px;
}

.card {
  /* Garde tes styles existants pour le fond, le texte, etc. */
  min-width: 320px;
  max-width: 360px;
  flex: 1 1 0;
  border-radius: 20px;
  /* ... autres styles existants ... */
}

.participant-card {
  flex: 0 0 350px;
  background-color: #082a46;
  color: white;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 220px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.participant-card h3 {
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  margin-bottom: 12px;
  color: #d49d3f;
}

.participant-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
}

.participant-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.participant-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #d49d3f;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.5em;
  line-height: 1.7;
}

/* Page BFD AWARDS */

.awards .herosectionawards {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/award-hero-section.webp") center/cover no-repeat;
  background-position-y: 0px;
}

.awards .herosectionawards .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.awards .herosectionawards h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.awards .herosectionawards p {
  text-align: center;
  color: white;
  margin: 0;
}

.awards .herosectionawards a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.awards .container {
  width: 85%;
  margin: auto;
}

.awards .presentation h2 {
  font-size: 2.6rem;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 53px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.awards .presentation {
  margin-top: 100px;
  margin-bottom: 20px;
}

.awards .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 0 0 10px;
}

.awards .presentation h4 {
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.awards .presentation .aboutbfdawards {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 600px;
}

.awards .presentation .aboutbfdawards .img {
  width: 55%;
  min-height: 600px;
  border-radius: 20px;
  background: url("../images/bg/bfd-awards-2025.webp") center/cover no-repeat;
}

.awards .presentation .aboutbfdawards .txt {
  width: 55%;
  min-height: 600px;
}

.awards .presentation .aboutbfdawards .txt h6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 38px;
  margin-top: 0;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

.awards .presentation .aboutbfdawards .txt p {
  font-weight: 400;
  font-size: 16.5px;
  line-height: 35px;
  margin: 0;
}

.awards .container .recentawards {
  margin-top: 50px;
}

/* Page devenir partenaire */

.partenaire .herosectionpartenaire-page {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/devenirpartenaire-herosection.webp") center/cover no-repeat;
}

.partenaire .herosectionpartenaire-page .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.partenaire .herosectionpartenaire-page h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Page partenaire */

.partenaire .container {
  width: 85%;
  margin: auto;
  margin-top: 50px;
}

.partenaire .herosectionpartenaire {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/partenaires-herosection.webp") center/cover no-repeat;
}

.partenaire .herosectionpartenaire .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.partenaire .herosectionpartenaire h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.partenaire .herosectionpartenaire p {
  text-align: center;
  color: white;
  margin: 0;
}

.partenaire .herosectionpartenaire a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.partenaire .container {
  width: 85%;
  margin: auto;
}

.partenaire .presentation h2 {
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  line-height: 50px;
}

.partenaire .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 0 0 10px;
}

.partenaire .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.partenaire .presentation h4 {
  font-weight: 500;
  max-width: 85%;
  font-size: 32px;
  letter-spacing: -1.08px;
  line-height: 37px;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.partenaire .presentation p {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  color: #222;
  margin: 0;
}

.partenaire .presentation p span {
  font-weight: 600;
}

.partenaire .infos-partenariat {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
}

.partenaire .infos-partenariat .info {
  width: 32%;
  min-height: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
  padding-bottom: 20px;
  margin-top: 30px;
}

.partenaire .infos-partenariat .txt {
  padding: 15px;
  padding-bottom: 0;
}

.partenaire .infos-partenariat h3 {
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 28px;
  color: #082a46;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.partenaire .infos-partenariat .img {
  width: 100%;
  height: 250px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.partenaire .infos-partenariat p {
  font-weight: 400;
  font-size: 16.5px;
  letter-spacing: -0.33px;
  line-height: 26.5px;
  text-align: left;
  color: #000;
  margin-top: 10px;
}

.cta-banner {
  width: 100%;
  background: url("../images/cta/2.webp") center/cover no-repeat;
  color: #fff;
  height: 60vh;
  margin-top: 60px;
  margin-bottom: 0px;
  background-attachment: fixed;
  background-position-y: 0px;
}

.cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.cta-text h3 {
  text-align: center;
  font-size: 32px;
  letter-spacing: -0.64px;
  line-height: 42px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.cta-text p {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  max-width: 70%;
  margin: auto;
  margin-top: 22px;
}

.cta-text .containerbtn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.cta-text .containerbtn button {
  background: transparent !important;
  color: #d49d3f !important;
  border: 2px solid #d49d3f !important;
  transition:
    background 0.3s,
    color 0.3s;
}

.cta-text .containerbtn button:hover {
  background: #d49d3f !important;
  color: #fff !important;
  border-color: #d49d3f !important;
}

.cta-text .containerbtn button i {
  color: white;
  margin-left: 10px;
  font-size: 1.2rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease forwards;
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: slideUp 0.4s ease forwards;
}

.close {
  color: #999;
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #082a46;
}

.modal-content a {
  text-decoration: none !important;
}

.modal-content button {
  display: block;
  width: 100%;
  margin: 15px 0;
  padding: 12px 0;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#btnEmail {
  background: linear-gradient(90deg, #082a46, #0a5a89);
  color: white;
}

#btnEmail:hover {
  background: linear-gradient(90deg, #0b74b8, #0a5a89);
  transform: translateY(-2px);
}

#btnWhatsApp {
  background: linear-gradient(90deg, #25d366, #128c7e);
  color: white;
}

#btnWhatsApp:hover {
  background: linear-gradient(90deg, #2ee177, #128c7e);
  transform: translateY(-2px);
}

/* ----- ANIMATIONS ----- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Page Bangui */
.bangui .container {
  width: 85%;
  margin: auto;
  padding: 40px 0px;
}

.bangui .herosectionbangui {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/venirbangui-hero.webp") center/cover no-repeat;
}

.bangui .herosectionbangui .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.bangui .herosectionbangui h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.bangui .herosectionbangui p {
  text-align: center;
  color: white;
  margin: 0;
}

.bangui .herosectionbangui a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.bangui .presentation h2 {
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  line-height: 50px;

}

.bangui .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px 0;
}

.bangui .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.bangui .presentation h4 {
  font-weight: 500;
  max-width: 85%;
  font-size: 32px;
  letter-spacing: -1.08px;
  line-height: 37px;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.bangui .presentation .aboutbangui {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 100px;
}

.bangui .presentation .aboutbangui .img {
  width: 50%;
  min-height: 330px;
  background-position-y: 0px;
}

.bangui .presentation .aboutbangui .txt {
  width: 50%;
  min-height: 330px;
}

.bangui .presentation .aboutbangui .txt h3 {
  font-size: 24px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: -0.96px;
  line-height: 34px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.bangui .presentation .aboutbangui .txt p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin: 0;
  color: #222;
}

.tourisme-div {
  margin: 0 auto;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tourisme-card {
  background: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.tourisme-img {
  width: 100%;
  height: 200px;
  /* Hauteur fixe pour toutes les images */
  overflow: hidden;
  position: relative;
  border-radius: 12px 12px 0 0;
}

.tourisme-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Pour que l'image remplisse bien sans déformer */
  display: block;
}

.tourisme-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d49d3f;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.4s;
}

.tourisme-content {
  padding: 20px;
  background: #fff;
  transition: background 0.4s;
}

.tourisme-content h3 {
  margin: 0 0 15px;
  font-weight: normal;
  font-size: 16px;
  font-weight: 500;
}

.tourisme-content p {
  font-size: 14px !important;
  color: #000;
  line-height: 30px !important;
  margin-bottom: 20px !important;
}

.tourisme-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tourisme-btn {
  border: 1px solid #d49d3f;
  background: none;
  color: #d49d3f;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.tourisme-btn:hover {
  background: #d49d3f;
  color: white;
}

.tourisme-price {
  font-size: 14px;
  color: #d49d3f;
  font-weight: bold;
}

/* Hover Effects */
.tourisme-card:hover .tourisme-img img {
  transform: scale(1.05);
}

.tourisme-card:hover .tourisme-badge {
  opacity: 1;
  transform: translateY(0);
}

.mtb-15 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.presentation p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.36px;
  color: #222;
  margin: 0;
}

.info-section {
  margin: 0 auto;
  padding: 50px 0px;
}

.info-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  color: #000;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #d49d3f;
}

.info-card h3 {
  margin-bottom: 10px;
  color: #000;
}

.info-card p {
  font-size: 14px;
  color: #000;
  line-height: 30px;
}

/* Page Contact */

.contact .container {
  width: 85%;
  margin: auto;
}

.contact .herosectioncontact {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/contact-herosection.webp") center/cover no-repeat;
}

.contact .herosectioncontact .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact .herosectioncontact h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.contact .herosectioncontact p {
  text-align: center;
  color: white;
  margin: 0;
}

.contact .herosectioncontact a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.contact .presentation h2 {
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 38px;
  margin-top: 0;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px 0;
}

.contact .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact .presentation h4 {
  font-weight: 500;
  max-width: 100%;
  font-size: 32px;
  line-height: 37px;
  letter-spacing: -1.28px;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.contact .presentation p {
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

.contact .presentation li {
  max-width: 90%;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 30px;
  margin: 0;
}

.contact .presentation p span {
  font-weight: 600;
}

.contact .presentation h3 {
  font-size: 1.5rem;
  color: #d49d3f;
  font-weight: 800;
  margin-top: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.contact .presentation .form {
  width: 97%;
  padding-top: 50px;
  margin-bottom: 100px;
}

.contact .presentation .form .input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact .presentation .form .inputtextarea {
  width: 100%;
}

.contact .presentation .form .inputtextarea div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact .presentation .form .input .champ {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.contact .presentation .form .input .champ.select {
  width: 100%;
}

.contact .presentation .form .inputcoche {
  width: 100%;
  margin-top: 30px;
}

.contact .presentation .form .inputcoche p {
  color: #010b40;
  font-weight: 500;
  font-size: 1.2rem;
}

.contact .presentation .form .inputcoche div {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact .presentation .form .inputcoche textarea {
  width: 50%;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 70px;
  margin-top: 30px;
}

.contact .presentation .form .inputcoche input[type="text"] {
  width: 50%;
  margin-top: 30px;
}

.contact .presentation .form input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.contact .presentation .form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 120px;
}

.contact .presentation .form textarea::placeholder {
  color: rgba(1, 11, 64, 0.5);
  font-size: 1rem;
}

.contact .presentation .form textarea:focus {
  border-color: #d49d3f;
  outline: none;
}

.contact .presentation .form select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  color: rgba(1, 11, 64, 1);
  font-size: 1rem;
}

.contact .presentation .form select option {
  color: black;
  font-size: 1rem;
}

.contact .presentation .form input:focus {
  border-color: #d49d3f;
  outline: none;
}

.contact .presentation .form select:focus {
  border-color: #d49d3f;
  outline: none;
}

.contact .presentation .form label {
  color: #010b40;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 400;
}

.contact .presentation .form input::placeholder {
  color: rgba(1, 11, 64, 0.5);
  font-size: 1rem;
}

.contact .presentation .form button {
  min-width: 300px;
  padding: 20px;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  background-color: #d49d3f;
  border: #d49d3f;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* Page inscription */

.inscrit .container {
  max-width: 1200px !important;
  margin: auto;
  padding-top: 70px;
}

.inscrit .herosectioncontact {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/inscription-herosection.webp") center/cover no-repeat;
}

.inscrit .herosectioncontact .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.inscrit .herosectioncontact h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

.inscrit .herosectioncontact p {
  text-align: center;
  color: white;
  margin: 0;
}

.inscrit .herosectioncontact a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

/*.inscrit .presentation h2 {
  font-size: 2.6rem;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 38px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.inscrit .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 0 0 10px;
}

.inscrit .presentation {
  margin-bottom: 100px;
}
*/

.inscrit .presentation h4 {
  font-weight: 400;
  max-width: 100%;
  font-size: 1.5rem;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.inscrit .presentation p {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.40px;
  margin: 0;
  text-align: center;
  width: 100%;
  margin-top: 20px;
}

.inscrit .presentation li {
  max-width: 90%;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 30px;
  margin: 0;
}

.inscrit .presentation p span {
  font-weight: 600;
}

.inscrit .presentation h3 {
  font-size: 1.5rem;
  color: #082a46;

  font-weight: 800;
  margin-top: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.inscrit .presentation .form {
  width: 97%;
  padding-top: 50px;
  margin-bottom: 100px;
}

.inscrit .presentation .form .input {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inscrit .presentation .form .inputtextarea {
  width: 100%;
}

.inscrit .presentation .form .inputtextarea div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.inscrit .presentation .form .input div {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.inscrit .presentation .form .inputcoche {
  width: 100%;
  margin-top: 30px;
}

.inscrit .presentation .form .inputcoche p {
  color: #010b40;
  font-weight: 500;
  font-size: 1.2rem;
}

.inscrit .presentation .form .inputcoche div {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inscrit .presentation .form .inputcoche input[type="radio"] {
  display: inline-block;
  transform: scale(1.2);
}

.inscrit .presentation .form .inputcoche textarea {
  width: 50%;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  resize: vertical;
  min-height: 70px;
  margin-top: 30px;
}

.inscrit .presentation .form .inputcoche input[type="text"] {
  width: 50%;
  margin-top: 30px;
}

.inscrit .presentation .form input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.inscrit .presentation .form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 120px;
}

.inscrit .presentation .form textarea::placeholder {
  color: rgba(1, 11, 64, 0.5);
  font-size: 1rem;
}

.inscrit .presentation .form textarea:focus {
  border-color: #d49d3f;
  outline: none;
}

.inscrit .presentation .form select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  color: rgba(1, 11, 64, 0.5);
  font-size: 1rem;
}

.inscrit .presentation .form select option {
  color: black;
  font-size: 1rem;
}

.inscrit .presentation .form input:focus {
  border-color: #d49d3f;
  outline: none;
}

.inscrit .presentation .form select:focus {
  border-color: #d49d3f;
  outline: none;
}

.inscrit .presentation .form label {
  color: #010b40;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 400;
}

.inscrit .presentation .form input::placeholder {
  color: rgba(1, 11, 64, 0.5);
  font-size: 1rem;
}

.inscrit .presentation .form button {
  min-width: 300px;
  padding: 20px;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  background-color: #d49d3f;
  border: #d49d3f;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* Styles spécifiques pour la section join-us sur les pages about et bangui */
.about .join-us {
  background: url("../images/cta/3.webp") center center/cover no-repeat;
}

.bangui .join-us {
  background: url("../images/cta/1.webp") center center/cover no-repeat;
}

/* Image de fond spécifique pour le CTA de la page Organisateurs */
.organisateurs-page .join-us {
  background: url("../images/cta/2.webp") center center/cover no-repeat;
}

.participant-card {
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.participant-card:hover {
  box-shadow:
    0 12px 32px rgba(17, 43, 68, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px) scale(1.03);
  z-index: 2;
}

.participant-card:hover h3 {
  color: #c7a25a;
  letter-spacing: 0.5px;
  transition:
    color 0.2s,
    letter-spacing 0.2s;
}

.partners {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

/* TITRES ET TRAIT GRIS */
.partners-header {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
}

.partners-title {
  font-size: 28px;
  letter-spacing: -1.12px;
  line-height: 38px;
  color: #082a46;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.partners-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #dcdcdc;
}

/* GRILLE GÉNÉRALE */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: flex-start;
}

/* GRILLE SPÉCIALE ORGANISATEURS */
.large-grid {
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 60px;
}

/* STYLE DES LOGOS */
.partner {
  position: relative;
  background: #fff;
  /* padding: 30px 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 4px;
  box-sizing: border-box;
}

.partner::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: #082a46;
  border-style: solid;
  border-width: 2px 0 0 2px;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.partner:hover::before {
  width: 99%;
  height: 98%;
}

/* IMAGES */
.partner img {
  max-width: 100%;
  max-height: 130px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.large-grid .partner img {
  max-height: 200px;
}

.partner:hover img {
  border: 5px solid #f3f3f3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .partners {
    width: 100%;
  }

  .partners-grid {
    gap: 30px;
  }

  .large-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .large-grid .partner img {
    max-height: 150px;
  }
}

@media (max-width: 576px) {

  .partner img {
    max-height: 85px;
  }

  .large-grid .partner img {
    max-height: 100px;
  }

  .partners-grid,
  .large-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {

  header nav ul li a,
  header nav #navMenu .ul-partenaire ul .ul-container a,
  header nav button {
    font-size: 12px !important;
  }
}

.speakers .herosectionspeakers {
  width: 100%;
  height: 80vh;
  background: url(../images/bg/speakers-herosection.webp) center / cover no-repeat;
}

.speakers .herosectionspeakers h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.speakers .herosectionspeakers .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.intervenants-section {
  padding: 100px 20px;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 2.6rem;
  font-weight: 700;
  color: #082a46;
  margin-bottom: 50px;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px auto 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.intervenants-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}

.intervenant-card {
  text-decoration: none;
  background-color: #fff;
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.intervenant-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: 0.1px solid #000;
}

/* --- SECTION INTERVENANTS ÉDITION 2025 --- */

.intervenants-header-left {
  text-align: left;
  margin-bottom: 40px;
}

.intervenants-header-left .section-title {
  text-align: left;
  margin-bottom: 15px;
}

.intervenants-header-left .section-title::after {
  margin-left: 0;
  margin-right: auto;
  margin-top: 10px;
}

.intervenants-header-left p {
  margin-left: 0;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

.intervenants-grid-edition {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px;
}

.photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 26px;
  font-weight: 700;
  color: #d49d3f;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fonction {
  font-size: 14px;
  letter-spacing: -0.56px;
  line-height: 24px;
  color: #000;
  margin: 0 0 10px 0;
}

.fonction span {
  font-weight: 500;
}

.institution {
  font-size: 14px;
  color: #082a46;
  font-weight: 600;
  letter-spacing: -0.56px;
  line-height: 24px;
  margin: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 18, 57, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

/* ======= Boîte de la modale ======= */
.modal-box {
  background: #fff;
  border-radius: 12px;
  max-width: 750px;
  width: 100%;
  max-height: 60vh;
  /* <-- empêche de dépasser la fenêtre */
  overflow-y: auto;
  /* <-- scroll vertical si besoin */
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.6s ease;
}

/* activation de la modale */
.modal.active .modal-box {
  transform: translateX(0);
  opacity: 1;
}

/* ======= Scrollbar élégante ======= */
.modal-box::-webkit-scrollbar {
  width: 6px;
}

.modal-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.modal-box::-webkit-scrollbar-thumb {
  background: #d49d3f;
  border-radius: 10px;
}

.modal-box::-webkit-scrollbar-thumb:hover {
  background: #d49d3f;
}

/* ======= Entête ======= */
.modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.modal-header img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.modal-header .infos h2 {
  color: #d49d3f;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  font-size: 20px;
  font-weight: 700;
}

.modal-header .infos p {
  margin: 2px 0;
}

.modal-body {
  margin-top: 20px;
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}

.modal-body ul {
  margin-left: 25px;
  /* décalage global de la liste */
  padding-left: 0;
  /* retire le padding par défaut du navigateur */
}

.modal-body ul li {
  margin-left: 15px;
  /* espace supplémentaire entre la puce et le texte */
  line-height: 1.6;
  /* pour un meilleur espacement vertical */
}

/* ======= Bouton de fermeture ======= */
.close {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 28px;
  color: #000;
  text-decoration: none;
  transition: color 0.3s;
}

.close:hover {
  color: #d49d3f;
}

@media (max-width: 767px) {

  .modal-header .infos h2 {
    font-size: 16px;
  }
}

.galerie .herosection {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/galerie-herosection.webp") center/cover no-repeat;
  background-position-y: 0px;
}

.galerie .herosection .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.galerie .herosection h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.galerie .herosection p {
  text-align: center;
  color: white;
  margin: 0;
}

.galerie .herosection a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.galerie .container {
  width: 85%;
  margin: auto;
}

.galerie .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.galerie .presentation p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.album-item {
  text-decoration: none;
  color: #000;
}

.album-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.album-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s;
}

.album-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.album-image:hover img {
  transform: scale(1.08);
}

.album-image:hover .album-hover {
  opacity: 1;
}

.album-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 25px !important;
  margin-top: 5px !important;
  color: #082a46;
}

.search-box {
  max-width: 100%;
  margin: 0 auto 30px auto;
}

.search-box input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0.1px solid #000;
  font-size: 16px;
  font-weight: 200;
}

.back-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #d49d3f;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 25px auto;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  display: block;
  width: fit-content;
}

.back-btn:hover i {
  transform: translateX(-4px);
}

.album-title-page {
  padding: 0 150px;
  text-align: center;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #082a46;
  margin-top: 20px;
  margin-bottom: 20px;
}

.masonry {
  column-count: 4;
  column-gap: 6px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s;
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.download-btn-lb {
  display: inline-block;
  color: #fff !important;
  padding: 10px 0px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.download-btn-lb:hover {
  background: #082a46;
  color: #fff;
}

@media (max-width: 1200px) {
  .masonry {
    column-count: 3;
  }
}

@media (max-width: 768px) {
  .masonry {
    column-count: 2;
  }

  .album-title-page {
    padding: 0;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .masonry {
    column-count: 1;
  }
}

/*Styles Spécifiques Page Média */

/* Hero Section */

.medias .container {
  width: 85%;
  margin: auto;
  margin-top: 50px;
}

.medias .herosection {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/medias-herosection.webp") center/cover no-repeat;
}

.medias .herosection .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.medias .herosection h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.medias .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.medias .presentation h2 {
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.medias .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px 0;
}

.medias .presentation h4 {
  font-weight: 500;
  max-width: 85%;
  font-size: 2rem;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.medias .presentation p {
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* --- DESIGN GRILLE PRESSE --- */
.press-grid {
  display: grid;
  /* Mobile first : 1 colonne */
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

/* Desktop : Force 3 colonnes strictes */
@media (min-width: 992px) {
  .press-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablette : 2 colonnes */
@media (min-width: 768px) and (max-width: 991px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.press-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  text-decoration: none;

  height: 100%;
  position: relative;
  overflow: hidden;
}

.press-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d49d3f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.press-card:hover::before {
  transform: scaleX(1);
}

.press-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 15px;
}

.press-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.press-logo i {
  font-size: 30px;
  color: #ccc;
}

.press-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.press-date {
  color: #d49d3f;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
}

.press-type {
  background-color: #f8f9fa;
  color: #666;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.press-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  color: #082a46;
  margin-bottom: 15px;
  flex-grow: 1;
}

.press-link-text {
  font-size: 14px;
  color: #d49d3f;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- STYLES PAGINATION --- */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1.5px solid #d49d3f;
  /* Bordure Orange */
  background: transparent;
  color: #d49d3f;
  /* Texte Orange */
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.page-btn:hover {
  background-color: rgba(212, 157, 63, 0.1);
}

.page-btn.active {
  background-color: #d49d3f;
  /* Fond Orange Plein */
  color: white;
  /* Texte Blanc */
}

.page-btn.disabled {
  border-color: #e0e0e0;
  color: #e0e0e0;
  cursor: not-allowed;
}

.page-btn.disabled:hover {
  background-color: transparent;
}

.page-arrow {
  font-size: 1.2rem;
  line-height: 1;
}

/* --- Styles Spécifiques Edition 2025 --- */

.edition .herosection {
  width: 100%;
  height: 80vh;
  background: url("../images/bg/edition-2025-herosection.webp") center/cover no-repeat;
  background-position-y: 0px;
}

.edition .herosection .text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.edition .herosection h2 {
  font-size: 3.7rem;
  line-height: 65px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.edition .herosection p {
  text-align: center;
  color: white;
  margin: 0;
}

.edition .herosection a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}

.edition .container {
  width: 85%;
  margin: auto;
}

.edition .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.edition .presentation h2 {
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  line-height: 50px;
}


.edition .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 10px 0 30px;
}

.edition .resume {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 100px;
}

.edition .resume .txt {
  width: 65%;
}

.edition .resume .txt p {
  font-size: 18px;
  color: #222;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin: 0;
  padding-bottom: 20px;
}

.edition .resume .txt p span {
  font-weight: 700;
  color: #082a46;
}

.intervenants-list {
  background-color: #f9f9f9;
  padding: 25px;
  border-left: 4px solid #d49d3f;
  margin: 20px 0 40px 0;
}

.intervenants-list h4 {
  color: #082a46;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

.intervenants-list ul {
  list-style: none;
  padding: 0;
}

.intervenants-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.intervenants-list li i {
  color: #d49d3f;
  margin-right: 10px;
}

/* .edition .resume .txt .cle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(8, 42, 70, 0.1);
  padding-top: 25px;
  padding-bottom: 25px;
}

.edition .resume .txt .cle .cle-number {
  width: 10%;
}

.edition .resume .txt .cle .cle-number h4 {
  font-size: 30px;
  font-weight: 700;
  color: #d49d3f; 
  margin: 0;
  line-height: 1;
}

.edition .resume .txt .cle .cle-txt {
  width: 90%;
}

.edition .resume .txt .cle .cle-txt h5 {
  font-size: 1.1rem;
  color: #082a46;
  margin-bottom: 8px;
  font-weight: 700;
}

.edition .resume .txt .cle .cle-txt p {
  line-height: 1.6;
  padding-top: 0px;
  padding-bottom: 0;
  font-weight: 400;
  font-size: 15.5px;
  margin: 0;
} */

/* --- Style Thématiques : Puces et Texte en ligne --- */

.themes-list-styled {
  list-style: none;
  padding-left: 0;
  margin-top: -22px;
}

.themes-list-styled li {
  position: relative;
  padding-left: 25px;
  /* Espace pour la puce */
  margin-bottom: 15px;
  /* Espace entre les lignes */
  line-height: 1.7;
  /* Hauteur de ligne pour la lisibilité */
}

/* La puce (check doré) */
.themes-list-styled li::before {
  content: "\f00c";
  /* Code icône FontAwesome Check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #d49d3f;
  /* Couleur Or */
  position: absolute;
  left: 0;
  top: 2px;
  /* Ajustement fin pour l'alignement vertical */
  font-size: 1rem;
}

/* Le titre H5 en ligne (inline) */
.themes-list-styled li h5 {
  display: inline;
  /* Force l'affichage sur la même ligne */
  font-size: 1.1rem;
  color: #082a46;
  /* Bleu foncé */
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  margin-right: 5px;
  /* Petit espace après les deux points */
}

/* Le paragraphe P en ligne (inline) */
.themes-list-styled li p {
  display: inline;
  /* Force l'affichage à la suite du h5 */
  font-size: 15.5px;
  color: #000;
  margin: 0;
  font-weight: 400;
}

.edition .resume .img {
  width: 35%;
  position: sticky;
  top: 100px;
}

.edition .resume .img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.edition .resume .img a.btn-main {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px;
}

.cta-agenda-col {
  flex: 1 1 0;
  min-width: 300px;
  max-width: 50%;
  background: #fff;
  border-radius: 12px;
  border: 2px dashed rgb(212, 157, 63, 0.5);
  padding: 40px 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.cta-agenda-col .txt {
  width: 100%;
}

.cta-agenda-col h2 {
  color: #082a46;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.cta-agenda-col p {
  font-weight: 400;
  font-size: 16.5px;
  line-height: 25px;
  margin-bottom: 30px;
}

.cta-agenda-col .btn-main {
  margin-top: 0;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .cta-agenda-row {
    flex-direction: column;
    width: 98%;
    gap: 20px;
  }

  .cta-agenda-col {
    max-width: 100%;
    padding: 30px 10px;
  }
}

/* --- NOUVEAU STYLE RETOUR EN IMAGES (Intro Titre) --- */
.edition .bfd-images-intro {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #fff;
}

.edition .bfd-images-intro h2 {
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  letter-spacing: -0.78px;
  line-height: 49px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.edition .bfd-images-intro h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  /* Or */
  margin: 15px auto;
}

.edition .bfd-images-intro p {
  max-width: 700px;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin: 0px auto 60px;
}

/* --- NOUVEAU STYLE RETOUR EN IMAGES (SLIDER) --- */
.edition .bfd-images {
  width: 100%;
  background-color: #082a46;
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.edition .bfd-images h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.edition .bfd-images h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  /* Or */
  margin: 15px auto;
}

/* Slider Container */

/* Styles spécifiques pour Swiper Element */
swiper-container {
  width: 100%;
  height: 500px;
  /* Hauteur du slider */
  padding-bottom: 0px;
}

/* swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease;
} */
swiper-slide {
  width: 450px !important;
  /* Largeur fixe définie ici */
  height: 450px !important;
  /* Hauteur fixe pour l'harmonie */
  opacity: 0.5;
  /* Les images sur les côtés sont semi-transparentes */
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform: scale(0.9);
  /* Légèrement plus petit par défaut */
}

/* L'image active au centre */
swiper-slide.swiper-slide-active {
  opacity: 1;
  /* Pleinement visible */
  transform: scale(1);
  /* Taille normale (zoom léger) */
  z-index: 10;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Logique largeur variable demandée */
swiper-slide {
  width: 80%;
}

swiper-slide:nth-child(2n),
swiper-slide:nth-child(3n) {
  width: 380px !important;
  /* On remet la même largeur fixe pour tous */
}

/* swiper-slide:nth-child(2n) {
    width: 60%;
  }

  swiper-slide:nth-child(3n) {
    width: 40%;
  } */

.cta-gallery-btn-container {
  text-align: center;
  margin-top: 40px;
}

.cta-gallery-btn-container .btn-main {
  border: 2px solid #d49d3f;
  background-color: transparent;
  color: #d49d3f !important;
}

.cta-gallery-btn-container .btn-main:hover {
  background-color: #d49d3f;
  color: white !important;
}

/* Navigation Controls */
/* Bouton next en haut à droite */
/* --- Navigation Slider : Top Right & Style Fin --- */

/* Conteneur des boutons pour les grouper */
.gallery-nav-top-right {
  position: absolute;
  top: -60px;
  /* On les remonte au-dessus des images */
  right: 20px;
  /* On les cale à droite */
  display: flex;
  gap: 15px;
  /* Espace entre les deux flèches */
  z-index: 20;
}

/* Style des boutons (transparent + taille icône) */
.gallery-btn-prev,
.gallery-btn-next {
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: white;
  /* Couleur par défaut (blanc sur fond bleu foncé) */
}

/* Taille et finesse de l'icône Bootstrap */
.gallery-btn-prev i,
.gallery-btn-next i {
  font-size: 30px;
  /* Taille assez grande pour être cliquable */
  line-height: 1;
  font-weight: 300 !important;
  /* Rend l'icône plus fine visuellement */
  -webkit-text-stroke: 0.5px transparent;
  /* Astuce pour affiner si besoin */
}

/* Au survol */
.gallery-btn-prev:hover,
.gallery-btn-next:hover {
  color: #d49d3f !important;
  /* Devient Or */
  transform: translateX(3px);
  /* Petit mouvement sympa */
}

/* Le bouton précédent bouge vers la gauche au survol */
.gallery-btn-prev:hover {
  transform: translateX(-3px);
}

/* --- SECTION AGENDA SPLIT (NOUVEAU CTA) --- */
.agenda-split {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 500px;
  background-color: #f8f9fa;
  margin-top: 60px;
  margin-bottom: 100px;
}

.agenda-split-image {
  width: 50%;
  background: url("../images/edition/JO__8981.webp") center/cover no-repeat;
  min-height: 400px;
}

.agenda-split-content {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.agenda-text-wrapper {
  max-width: 600px;
}

.agenda-text-wrapper h2 {
  color: #082a46;
  font-family: "Poppins", sans-serif;
  font-size: 39px;
  letter-spacing: -0.78px;
  line-height: 49px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.agenda-text-wrapper p {
  font-size: 18px;
  color: #222;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin-bottom: 30px;
}

.agenda-text-wrapper .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-gallery-btn-container {
  text-align: center;
  margin-top: 40px;
}

.swal2-confirm.my-custom-btn {
  width: 150px;
  padding: 15px;
  background-color: #d49d3f;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: bold;
}

.swal2-confirm.my-custom-btn:focus {
  outline: none;
}

/* --- SECTION PRESSE (ÉDITION) --- */
.edition-presse {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.edition-presse .section-intro {
  max-width: 700px;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin: 0px auto 60px;
}

.edition-media-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.edition-media-grid img {
  height: 100px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  cursor: pointer;
}

.edition-media-grid img:hover {
  filter: grayscale(0%);
  /* Couleur au survol */
  opacity: 1;
  transform: scale(1.1);
}

.btn-container-center {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* --- SECTION RAPPORT (ÉDITION) --- */
.edition-rapport {
  padding: 80px 0;
  background-color: #082a46;
  /* Fond Bleu Nuit */
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Image de fond subtile (optionnelle) */
.edition-rapport::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/logos/logo-white.webp") center/120% no-repeat;
  opacity: 0.05;
  /* Très léger */
  pointer-events: none;
}

.rapport-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.rapport-visual {
  width: 40%;
  display: flex;
  justify-content: center;
}

/* Effet 3D CSS pour l'image (Book style) */
.book-3d img {
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  box-shadow:
    -10px 10px 20px rgba(0, 0, 0, 0.5),
    /* Ombre portée */
    -2px 0 0 #fff inset;
  /* Reliure */
  transform: perspective(1000px) rotateY(-15deg);
  /* Rotation 3D */
  transition: transform 0.4s ease;
  border: 4px solid #d49d3f;
  /* Bordure dorée */
}

.book-3d img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.rapport-text {
  width: 60%;
  text-align: left;
}

.rapport-text h2 {
  color: #d49d3f;
  /* Titre doré */
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 45px;
  letter-spacing: -0.90px;
  line-height: 55px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.rapport-text p {
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.80px;
  line-height: 30px;
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-download {
  border: 2px solid #d49d3f;
  background-color: #d49d3f;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-download:hover {
  background-color: transparent;
  color: #d49d3f !important;
}

/* --- SECTION AWARDS 2025 --- */
/* .awards-2025-section {
  padding: 80px 0;
  background-color: #f9f7f5;
}

.awards-2025-section .section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  color: #000;
}

.awards-category-block {
  margin-bottom: 60px;
}

.awards-category-block.mt-50 {
  margin-top: 50px;
}

.category-title {
  text-align: center;
  font-size: 1.8rem;
  color: #d49d3f; 
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.category-title i {
  margin-right: 10px;
}
.laureats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.laureat-card {
  background: #fff;
  width: 280px; 
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-top: 4px solid #082a46; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.laureat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: #d49d3f; 
}
.laureat-icon {
  width: 80px;
  height: 80px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: #082a46;
  font-size: 35px;
}

.laureat-info h4 {
  color: #082a46;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.laureat-info .role {
  font-size: 0.95rem;
  color: #d49d3f;
  font-weight: 600;
  margin-bottom: 5px;
}

.laureat-info .company {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}
.special-award {
  padding-top: 50px; 
  border-top: none; 
  border-bottom: 4px solid #d49d3f;
} */

.award-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #082a46;
  color: #fff;
  padding: 8px 5px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.award-badge i {
  color: #d49d3f;
  margin-right: 5px;
}

.gold-card {
  border: 2px solid #d49d3f;
  background: linear-gradient(to bottom, #fff, #fffdf5);
  transform: scale(1.05);
}

.gold-card .award-badge {
  background-color: #d49d3f;
  color: #082a46;
}

.gold-card .award-badge i {
  color: #fff;
}

/* --- SECTION AWARDS 2025 (Fond Blanc) --- */
.awards-2025-section {
  padding: 20px 0 80px 0;
  background-color: #ffffff;
}

.text-left {
  text-align: left !important;
}

.awards-2025-section .section-title.text-left::after {
  margin: 10px 0 0 0;
}

.awards-2025-section .section-intro.text-left {
  margin-left: 0;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  margin: 0 0 50px 0;
}

.category-title.text-left {
  text-align: left;
  margin-bottom: 30px;
}

/* Grille alignée à gauche */
.laureats-grid.grid-left {
  justify-content: flex-start;
  gap: 20px;
}

/* Carte Lauréat */
.laureat-card {
  width: 260px;
  padding: 30px 15px;
  text-align: center;
  transition:
    transform 0.3s ease,
    background-color 0.3s;
  position: relative;
  border-top: 4px solid #082a46;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #eee;
}

.laureat-card:hover {
  background-color: #fff;
  border-color: #d49d3f;
}

/* Icône ronde : Fond blanc pour contraster avec la carte grise */
.laureat-icon {
  width: 80px;
  height: 80px;
  background-color: #fff;
  /* Blanc sur carte grise */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  color: #082a46;
  font-size: 35px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* Petite ombre sur l'icône */
}

/* --- GESTION DES PHOTOS ET LOGOS --- */
.laureat-photo {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  margin-top: 30px;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.laureat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Remplit le cercle pour les visages */
}

/* Spécifique pour les logos (Orange, GIMAC) pour qu'ils ne soient pas coupés */
.logo-mode img {
  object-fit: contain;
  /* Garde le logo entier */
  padding: 15px;
  /* Petit padding pour que le logo respire */
}

/* Infos Texte */
.laureat-info h4 {
  color: #082a46;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  min-height: 40px;
  /* Hauteur min pour aligner les titres sur 2 lignes */
  display: flex;
  align-items: center;
  justify-content: center;
}

.laureat-info .role {
  font-size: 0.85rem;
  color: #d49d3f;
  font-weight: 600;
  margin-bottom: 5px;
}

.laureat-info .company {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.3;
  margin: 0;
}

.gold-card {
  border: 2px solid #d49d3f;
  background: linear-gradient(to bottom, #fffdf5, #fff);
}

/* --- RESTE DU STYLE (Inchangé) --- */
.awards-category-block {
  margin-bottom: 60px;
}

.awards-category-block.mt-50 {
  margin-top: 50px;
}

.category-title {
  text-align: center;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: -0.56px;
  color: #d49d3f;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.laureats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.laureat-info h4 {
  color: #082a46;
  font-size: 17px;
  letter-spacing: -0.34px;
  line-height: 27px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.laureat-info .role {
  font-size: 0.95rem;
  color: #d49d3f;
  font-weight: 600;
  margin-bottom: 5px;
}

.laureat-info .company {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.special-award {
  padding-top: 50px;
  border-top: none;
  border-bottom: 4px solid #d49d3f;
}

.gold-card {
  border: 2px solid #d49d3f;
  background: linear-gradient(to bottom, #fffdf5, #fff);
  transform: scale(1.05);
}

/* --- SECTION VIDÉO RÉCAPITULATIVE (Fond Blanc / Flat Design) --- */
.video-recap-section {
  padding: 80px 0 100px 0;
  background-color: #ffffff;
  /* Fond Blanc */
  text-align: center;
  position: relative;
}

.video-text-content {
  max-width: 800px;
  margin: 0 auto 50px auto;
}

/* Couleurs des textes adaptées au fond blanc */
.video-recap-section .section-title {
  color: #082a46;
  /* Bleu foncé */
}

.video-recap-section .section-intro {
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  margin: 0 0 50px 0;
}

/* Conteneur de la vignette vidéo : Simple et sans bordures/ombres */
.video-wrapper-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  /* Fond noir par défaut derrière l'image */
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  /* Légèrement assombri pour faire ressortir le bouton */
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}

/* Effet au survol : Zoom léger */
.video-wrapper-box:hover .video-thumbnail {
  transform: scale(1.05);
  opacity: 0.6;
}

/* --- BOUTON PLAY CENTRAL --- */
.play-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  z-index: 10;
}

.play-btn-circle {
  width: 90px;
  height: 90px;
  background-color: #d49d3f;
  /* Or */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  padding-left: 5px;
  z-index: 2;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  /* Pas d'ombre sur le bouton non plus, design plat */
  box-shadow: none;
}

.play-trigger:hover .play-btn-circle {
  transform: scale(1.1);
  background-color: #fff;
  color: #d49d3f;
}

/* Animation Pulsation (Ondes) */
.play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(212, 157, 63, 0.5);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* gala section */
.gala-slider-section {
  padding: 60px 0 80px 0;
  background-color: #ffffff;
  text-align: center;
}

/* Wrapper Flex pour mettre les flèches à côté du cadre */
.gala-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  /* Espace entre flèches et image */
  max-width: 1100px;
  margin: 40px auto 20px auto;
  position: relative;
}

/* Le Cadre Rectangulaire (Masque) */
.gala-rect-container {
  width: 800px;
  /* Largeur du rectangle */
  height: 500px;
  /* Hauteur du rectangle */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: #000;
  /* Fond noir si image ne charge pas */
  position: relative;
}

/* --- OVERRIDE (Écrasement) des styles swiper-slide existants --- */
/* On cible UNIQUEMENT les slides à l'intérieur de .galaSwiper */

.galaSwiper {
  width: 100%;
  height: 100%;
}

.galaSwiper swiper-slide {
  width: 100% !important;
  /* Force la largeur à 100% du conteneur */
  height: 100% !important;
  /* Force la hauteur à 100% */
  opacity: 1 !important;
  /* Pas de transparence */
  transform: none !important;
  /* Pas de zoom/scale */
  margin: 0 !important;
  background: #000;
  /* AJOUT : Ces 3 lignes assurent que le contenu est centré */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.galaSwiper swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* L'image remplit tout le rectangle */
  object-position: center center;
  display: block;
}

/* --- Navigation : Flèches fines (Bootstrap Icons) --- */
.gala-btn-prev,
.gala-btn-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #082a46;
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
  /* Empêche les flèches de s'écraser */
}

.gala-btn-prev i,
.gala-btn-next i {
  font-size: 3rem;
  /* Taille fine et grande */
  font-weight: 300 !important;
  -webkit-text-stroke: 1px transparent;
}

.gala-btn-prev:hover,
.gala-btn-next:hover {
  color: #d49d3f;
  /* Or au survol */
  transform: scale(1.1);
}

/* --- Pagination : Carrés --- */
.gala-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

/* Ciblage spécifique des bullets générés par le composant Swiper */
/* Note: Les web components shadow DOM peuvent être délicats, 
   mais l'injection de style via JS (voir plus bas) ou ces classes globales aident */
.gala-pagination .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  border-radius: 0 !important;
  /* Carré */
  background: #ccc !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: background 0.3s;
}

.gala-pagination .swiper-pagination-bullet-active {
  background: #d49d3f !important;
  /* Actif Or */
}

/* --- SECTION RESSOURCES (NOUVEAU DESIGN) --- */
.resources-section {
  padding: 80px 0;
  background-color: #ffffff;
  /* Fond Blanc */
  text-align: center;
}

.resources-section h2 {
  font-size: 39px;
  font-weight: 800;
  letter-spacing: -0.78px;
  line-height: 49px;
  color: #082a46;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.resources-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 15px auto;
}

.resources-section .section-intro {
  max-width: 700px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  /* Plus d'espace entre les colonnes */
  max-width: 1200px;
  margin: 0 auto;
}

/* Style de la Carte (Épuré) */
.resource-card {
  background: transparent;
  /* Pas de fond gris */
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  /* Texte aligné à gauche comme une légende */
}

/* Image du document */
.resource-image {
  width: 100%;
  height: 550px;
  /* Hauteur fixe pour aligner les blocs */
  background-color: #f4f4f4;
  /* Fond gris léger si l'image ne charge pas */
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #eee;
  /* Légère bordure fine autour de l'image */
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Remplit le cadre */
  object-position: top center;
  /* Montre le haut du document */
  transition: transform 0.5s ease;
}

/* Effet zoom sur l'image au survol */
.resource-card:hover .resource-image img {
  transform: scale(1.05);
}

/* Contenu (Légende) */
.resource-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Aligne texte et bouton à gauche */
  flex-grow: 1;
}

.resource-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  letter-spacing: -0.44px;
  line-height: 32px;
  color: #082a46;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.resource-content p {
  font-size: 18px;
  color: #000;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin-bottom: 25px;
}

/* Ajustement des boutons pour cette section */
.resource-content a {
  width: 100%;
  /* Bouton pleine largeur par rapport à la carte */
  text-align: center;
  padding: 15px 0;
  border-radius: 0 !important;
  /* Boutons carrés comme demandé */
}

/* --- NOUVEAU STYLE PARTENAIRES (Description) --- */

/* Conteneur global de la liste */
.partners-list-view {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

/* La carte individuelle (Ligne) */
.partner-detailed-card {
  display: flex;
  align-items: flex-start;
  /* Aligner en haut */
  gap: 30px;
  width: 100%;
  background: #fff;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  /* Séparation discrète */
}

.partner-detailed-card:last-child {
  border-bottom: none;
}

/* Le bloc Logo (Encadré) */
.partner-logo-box {
  flex: 0 0 250px;
  /* Largeur fixe pour le logo */
  height: 150px;
  border: 1px solid #082a46;
  /* Bordure bleu BFD */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* .partner-detailed-card:hover .partner-logo-box {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-color: #d49d3f; 
} */

/* Le bloc Texte */
.partner-desc-box {
  flex: 1;
  /* Prend le reste de la place */
}

.partner-desc-box h3 {
  color: #082a46;
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.partner-desc-box p {
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  color: #333;
  margin-bottom: 10px;
  text-align: justify;
}

.partner-desc-box a {
  color: #d49d3f;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.partner-desc-box a:hover {
  text-decoration: underline;
}

/* =========================================
   PAGE ORGANISATEURS
   ========================================= */

/* --- HERO SECTION --- */
.herosection-organisateurs {
  width: 100%;
  height: 80vh;
  /* Un peu moins haut que l'accueil */
  background: url("../images/bg/organisateur-herosection.webp") center/cover no-repeat;
  /* Réutilisation BG */
  position: relative;
}

.herosection-organisateurs .text {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.herosection-organisateurs h2 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;
}

/* --- INTRO SECTION --- */
.org-intro-section {
  padding: 80px 0 20px 0;
  text-align: left;
  background-color: #fff;
}

.org-intro-section .section-title {
  text-align: left;
  margin-bottom: 20px;
  line-height: 55px;
}

.org-intro-section .section-title::after {
  margin: 10px 0 0 0;
  /* Marge à gauche à 0 */
}

.org-intro-section .intro-text {
  max-width: 100%;
  /* Prend toute la largeur du container */
  margin: 0;
  /* Supprime les marges automatiques qui centraient */
  font-size: 18px;
  color: #222;
  line-height: 28px;
  letter-spacing: -0.36px;
  text-align: left;
}

/* Sous-titres de section (H3) */
.org-subtitle {
  text-align: center;
  font-size: 1.8rem;
  color: #082a46;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.org-subtitle::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d49d3f;
  margin: 10px auto 0;
}

/* --- AGENCES SECTION --- */
.org-agencies-section,
.org-apecca-section {
  padding: 20px 0 40px 0;
  background-color: #fff;
}

.org-patronage-section {
  padding: 20px 0 100px 0;
  background-color: #fff;
}

.org-subtitle-simple {
  text-align: left;
  font-size: 32px;
  letter-spacing: -1.28px;
  line-height: 42px;
  color: #082a46;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

/* Conteneur de la liste verticale */
.org-stack-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  /* Espace entre les blocs */
}

.org-flat-card {
  display: flex;
  align-items: flex-start;
  /* Aligne le haut du logo avec le haut du texte */
  gap: 40px;
  background: #fff;
  /* Pas de box-shadow, pas de bordure, fond blanc pur */
}

.org-card-logo {
  flex: 0 0 250px;
  /* Largeur fixe pour la zone logo */
  display: flex;
  justify-content: center;
  /* Centre le logo dans sa zone */
  align-items: flex-start;
  padding-top: 10px;
  /* Petit ajustement optique */
}

.org-card-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Colonne Texte */
.org-card-txt {
  flex: 1;
  /* Prend tout l'espace restant */
}

.org-card-txt h4 {
  font-size: 22px;
  letter-spacing: -0.44px;
  line-height: 27px;
  color: #082a46;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.org-card-txt p {
  font-size: 18px;
  color: #222;
  line-height: 28px;
  letter-spacing: -0.36px;
  margin-bottom: 15px;
  text-align: left;
}

.agencies-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.agency-card {
  background: #fff;
  flex: 1 1 400px;
  max-width: 550px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid #082a46;
  transition: transform 0.3s ease;
}

.agency-card:hover {
  transform: translateY(-10px);
}

.agency-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.agency-logo img {
  max-height: 100%;
  max-width: 200px;
  object-fit: contain;
}

.agency-card h4 {
  font-size: 1.4rem;
  color: #082a46;
  margin-bottom: 15px;
  font-weight: 700;
}

.agency-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.apecca-block {
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.apecca-logo-col img {
  width: 100%;
  max-width: 250px;
}

.apecca-text-col {
  flex: 1;
}

.apecca-text-col h4 {
  font-size: 1.5rem;
  color: #082a46;
  margin-bottom: 20px;
  font-weight: 700;
}

.apecca-text-col p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* --- NOUVELLE SECTION GOUVERNANCE (Design Plat / Bleu) --- */

.org-leadership-flat {
  padding: 10px 0 30px 0;
  background-color: #ffffff;
  /* Fond de section BLANC */
  text-align: left;
}

/* Titre simple sans barre after */
.title-simple {
  font-size: 32px;
  letter-spacing: -1.28px;
  line-height: 42px;
  color: #082a46;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  text-align: left;
}

.leadership-grid-flat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* La Carte "Flat" */
.leader-card-flat {
  background-color: #082a46;
  /* Fond BLEU BANGUI */
  padding: 15px;
  /* Le padding crée l'espace bleu autour de l'image */
  border-radius: 0;
  /* Pas de radius */
  box-shadow: none;
  /* Pas d'ombre */
  display: flex;
  flex-direction: column;
}

/* Conteneur Image */
.leader-img-wrapper {
  width: 100%;
  height: 350px;
  /* Hauteur fixe pour l'image */
  overflow: hidden;
  background-color: #082a46;
  margin-bottom: 20px;
}

.leader-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  /* Focus sur le visage */
}

/* Conteneur Texte (Aligné à gauche) */
.leader-txt-wrapper {
  text-align: center;
  padding: 0 5px;
}

/* Nom en JAUNE BANGUI */
.leader-name {
  color: #d49d3f;
  font-size: 20px;
  letter-spacing: -0.8px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

/* Rôle Principal (Blanc) */
.leader-role {
  color: #ffffff;
  font-size: 17px;
  letter-spacing: -0.68px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* Job (Blanc, légèrement plus petit) */
.leader-job {
  color: #fff;
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 26px;
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: 10px;
  font-style: normal;
  opacity: 0.9;
}

/* Description (Blanc, fin) */
.leader-desc {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* --- HAUT PATRONAGE --- */
/* Style spécifique pour la liste des ministères */
.patronage-ministries {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.patronage-ministries li {
  font-size: 17px;
  letter-spacing: -0.68px;
  line-height: 27px;
  color: #082a46;
  /* Bleu BFD */
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  padding-left: 20px;
}

/* Petite puce dorée personnalisée */
.patronage-ministries li::before {
  content: "•";
  color: #d49d3f;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -4px;
}

.patronage-emblem {
  width: 80px;
  margin-bottom: 20px;
}

.patronage-box h2 {
  font-size: 2rem;
  color: #082a46;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.patronage-box p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-style: italic;
}

.patronage-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.patronage-list h3 {
  font-size: 1.4rem;
  color: #000;
  font-weight: 700;
}

.patronage-list .separator {
  color: #d49d3f;
  font-size: 1.5rem;
  display: none;
  /* Caché en colonne */
}

/* =======================================================
   RESPONSIVE : SECTION RESSOURCES (HOME)
   ======================================================= */

/* --- 2nd Mini-grand écrans (1025px - 1280px) --- */
@media (max-width: 1280px) {
  .resources-grid {
    gap: 30px;
    /* On réduit l'écart entre les colonnes */
  }

  .resource-image {
    height: 450px;
    /* On réduit un peu la hauteur des images */
  }

  .resources-section h2 {
    text-align: left;
  }

  .resources-section .section-intro {
    margin: 0 0 60px 0;
  }

  .resources-section h2::after {
    margin: 15px 0px 15px 0px;
  }
}

/* --- Mini-grand écrans (992px - 1024px) --- */
@media (max-width: 1024px) {
  .resources-grid {
    /* Passage à 2 colonnes pour éviter que ce soit trop serré */
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .resource-image {
    height: 400px;
  }

  /* Le 3ème élément prend toute la largeur s'il est seul sur la ligne */
  /* Optionnel : décommenter si vous voulez que le dernier prenne toute la largeur */
  /* .resource-card:last-child {
      grid-column: span 2;
  } */
}

/* --- Tablettes écrans (767px - 991px) --- */
@media (max-width: 991px) {
  .resources-section {
    padding: 60px 0;
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    /* On garde 2 colonnes */
    gap: 25px;
  }

  .resource-image {
    height: 350px;
    /* Hauteur adaptée tablette */
  }

  .resource-content a {
    font-size: 0.9rem;
    padding: 12px 0;
  }
}

/* --- Petits écrans (400px - 767px) --- */
@media (max-width: 767px) {
  .resources-grid {
    grid-template-columns: 1fr;
    /* 1 seule colonne (empilé) */
    gap: 50px;
    /* Plus d'espace vertical entre les blocs */
  }

  .resource-image {
    height: 300px;
    /* Hauteur standard mobile */
  }

  .resource-content {
    align-items: center;
    /* On centre le texte sur mobile */
    text-align: center;
  }

  .resource-content p {
    text-align: center;
  }

  .resource-content a {
    width: 100%;
    /* Le bouton prend toute la largeur */
  }

  .resources-section h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
    line-height: 42px;
  }

  .resources-section .section-intro {
    margin: 0 0 60px 0;
    text-align: left;
  }
}

/* --- Très Petits écrans (< 399px) --- */
@media (max-width: 399px) {
  .resources-section {
    padding: 50px 0;
  }

  .resource-image {
    height: 220px;
    /* Image plus petite pour ne pas dominer l'écran */
  }

  .resources-section h2 {
    font-size: 1.8rem;
  }

  .resource-content h3 {
    font-size: 1.2rem;
  }

  .section-intro {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* --- STYLE VIDÉO YOUTUBE INTEGRÉE --- */

.video-wrapper-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  /* Enlève les bordures par défaut */
  display: block;
  border-radius: 20px;
  /* Force l'arrondi sur l'iframe aussi */
}

/* Sur mobile, on garde la hauteur définie dans le responsive.css (220px)


/* =========================================
   PAGE BFD 2026
   ========================================= */

/* Hero — image de fond + overlay dégradé */
/* .bfd2026-banner {
  background:
    linear-gradient(to right, rgba(8,42,70,0.92) 0%, rgba(1,11,64,0.78) 100%),
    url('../images/edition/JO__8978.webp') center center / cover no-repeat;
} */

/* Logos BFD + CEMAC côte à côte */
.hero-logos-pair {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: -20px;
}

.hero-logo-bfd {
  height: 52px;
  width: auto;
}

.hero-logos-sep {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.hero-logo-cemac {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Logo groupe au-dessus du badge */
.hero-groupe-logo {
  display: block;
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 25px;
}

/* Badge "Édition 2026" */
.hero-edition-badge {
  display: inline-block;
  border: 1px solid #fcae28;
  color: #fcae28;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 30px;
  border-radius: 50px;
  margin-bottom: 12px;
}


.bfd2026-theme-wrap {
  display: flex;
  flex-direction: column;
  margin: 15px 0px;
}

/*
.bfd2026-theme-wrap::before {
  content: "";
  flex-shrink: 0;
  width: 2px;
  background: linear-gradient(180deg, #d49d3f, rgba(212, 157, 63, 0.15));
  border-radius: 0;
}*/

.bfd2026-theme-wrap h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 50px;
}

.bfd2026-theme-wrap h3 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.6px;
  line-height: 40px;
}

.bfd2026-theme-wrap h3 span {
  color: #fcae28;
}

.bfd2026-theme-wrap h1 span {
  color: #fcae28;
}

.bfd2026-theme-wrap .line {
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, rgb(212, 157, 63), rgba(212, 157, 63, 0.5), transparent);
  border-radius: 2px;
  margin: 7px 0px;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s ease;
}

/* Thème de l'édition dans le hero */
.hero-theme-text {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
  color: #fff;
  margin: 10px 0 20px;
  letter-spacing: 0;
}

.hero-theme-text .theme-gold {
  font-size: 20px;
  color: #d49d3f;
}

/* Pill couplage CEMAC */
.hero-coupling-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin: 6px 0 16px;
}

.event-location--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.hero-coupling-badge i {
  color: #d49d3f;
}

.hero-coupling-badge strong {
  color: #fff;
  font-weight: 600;
}

/* IDs countdown BFD 2026 (miroir de #days/#hours etc.) */
#cd-days,
#cd-hours,
#cd-minutes,
#cd-seconds {
  font-size: 32px;
  line-height: 42px;
  letter-spacing: -1.28px;
  font-weight: 700;
  color: #fcae28;
}

/* Séparateur ":" entre les blocs du countdown */
.countdown-sep-dot {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d49d3f;
  margin-bottom: 18px;
  opacity: 0.8;
}

/* Rangée de boutons CTA */
.banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.bfd2026-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 0px;
}

.bfd2026-cta-row .banner-btns {
  margin-top: 20px;
}

.br-display {
  display: none;
}

/* ── Section Thème de l'édition ── */
.theme-banner {
  position: relative;
  background-color: #062038;
  overflow: hidden;
  padding: 56px 80px;
}

.theme-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52%;
  height: 100%;
  background: url("../images/edition/JO__8981.webp") center / cover no-repeat;
  opacity: 0.28;
}

.theme-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: url("../images/edition/JO__8950.webp") center / cover no-repeat;
  opacity: 0.28;
}

.theme-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.theme-banner-text {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  letter-spacing: -0.5px;
}

.theme-gold {
  color: #d49d3f;
}

/* ── Section Chiffres Clés ── */
.chiffres-section {
  background-color: #123779;
  padding: 72px 24px;
  margin-top: 90px !important;
}

.chiffres-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.chiffre-card {
  flex: 1;
  text-align: center;
  padding: 20px 28px;
}

.chiffre-sep {
  width: 1px;
  height: 90px;
  background: rgba(212, 157, 63, 0.3);
  flex-shrink: 0;
}

.chiffre-icon {
  font-size: 26px;
  color: #d49d3f;
  margin-bottom: 14px;
}

.chiffre-value {
  font-size: 54px;
  letter-spacing: -1.08px;
  line-height: 59px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.chiffre-plus {
  font-size: 34px;
  color: #d49d3f;
  font-weight: 700;
}

.chiffre-ere {
  font-size: 22px;
  font-weight: 700;
  vertical-align: super;
  line-height: 0;
}

.chiffre-label {
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 28px;
  color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  margin: 0 auto;
}

/* ── Section Édition 2025 en images ── */

.edition2025-section {
  background-color: #fff;
  padding-top: 90px;
  text-align: center;
}

.edition2025-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.edition2025-title {
  font-weight: 800;
  color: #123779;
  letter-spacing: -0.78px !important;
  line-height: 44px !important;
  text-align: center;
  margin: 0;
  width: 100%;
}

.edition2025-desc {
  font-size: 20px;
  color: #000000;
  line-height: 30px;
  letter-spacing: -0.40px;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* Grille 3 images — collées, même taille */
.edition2025-gallery {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  margin: 8px 0;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid #fcae28;
}

.edition2025-img-wrap {
  flex: 1;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

/* Séparateur vertical entre images */
.edition2025-img-wrap+.edition2025-img-wrap {
  border-left: 3px solid #d49d3f;
}

.edition2025-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

@media (max-width: 700px) {
  .edition2025-gallery {
    flex-direction: column;
  }

  .edition2025-img-wrap,
  .edition2025-img-featured {
    width: 100%;
    flex: unset;
  }
}

/* ── bfd-2026 ── */
.banner.cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 600px !important;
}

.bfd-2026-title {
  font-size: 39px !important;
  margin-bottom: 15px !important;
  font-weight: 800 !important;
  color: #123779 !important;
  margin: 0 !important;
  letter-spacing: -0.78px !important;
  line-height: 44px !important;
}

.bfd-2026 .thematiques-section h2 {
  font-size: 39px;
  font-weight: 800;
  color: #123779;
  margin: 0;
  letter-spacing: -0.78px !important;
  line-height: 44px !important;
  margin-bottom: 30px;
  text-transform: initial;
  text-align: left !important;
}

.bfd-2026 .thematiques-section h2 span {
  text-transform: uppercase !important;
}

.partner-logo-slider.partners-sponsors-2026 h2 {
  font-size: 50px !important;
  letter-spacing: 0.5px;
  font-weight: 800;
  color: #123779;
  margin: 0;
  letter-spacing: -0.78px !important;
  line-height: 44px !important;
  margin-bottom: 30px;
}

.bfd-2026-title.text-center {
  text-align: center;
}

/* ── Section Thématiques Stratégiques ── */
.thematiques-section {
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
}

.thematiques-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.thematiques-header {
  text-align: center;
  margin-bottom: 52px;
}

.thematiques-header h2 {
  font-weight: 800;
  color: #123779;
  letter-spacing: -0.78px !important;
  line-height: 44px !important;
  width: 100%;
  text-transform: lowercase;
}

.thematiques-header h2::after {
  content: "";
  display: none;
  width: 70px;
  height: 4px;
  background: #d49d3f;
  margin: 12px auto 0;
}

.thematiques-header p {
  font-size: 17px;
  letter-spacing: -0.68px;
  line-height: 27px;
  color: #000000;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.thematiques-header .line {
  width: 100%;
  height: 1px;
  background-color: #fcae28;
}




.quiz {
  padding: 30px 40px;
  padding-left: 140px;
  border-radius: 12px;
  background: url(../images/bg/quiz-bg.webp) left / cover no-repeat;
}

.quiz p {
  font-size: 23px !important;
  letter-spacing: -0.46px;
  line-height: 33px !important;
  font-weight: 400 !important;
  color: #fff !important;
}

.quiz span {
  font-weight: 600;
  color: #fcae28;
}

.thematiques-intro p {
  font-size: 20px;
  color: #000000;
  line-height: 30px;
  letter-spacing: -0.40px;
}

.thematiques-intro p .theme {
  font-weight: 700;
  color: #010b40;
}

.thematiques-intro p span.blue {
  font-weight: 600;
  color: #010b40;
}

.thematiques-intro h3 {
  font-size: 25px;
  line-height: 35px;
  letter-spacing: -1px;
  font-weight: 800;
  margin: 48px 0 38px;
  padding-top: 32px;
  border-top: 1px solid #d8d2c3;
  text-transform: uppercase;
}

.thematiques-intro p span.title {
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -0.44px;
  color: rgb(18, 55, 121);
  font-weight: 800;
  position: relative;
  padding-left: 18px;
}

.thematiques-intro p span.title::before {
  content: "■";
  color: #fcae28;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mt-10 {
  margin-top: 20px;
}

/* Grille 5 cartes : 3 + 2 centrés */
.thematiques-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-top: 50px;
}

.thematique-card {
  background: url(../images/bg/quiz-bg.webp) right/ cover no-repeat;
  border-radius: 12px;
  padding: 50px 40px;
  cursor: pointer;
}

.thematique-card.one,
.thematique-card.two {
  flex: 0 1 calc(50% - 14px);
}

.thematique-card.three {
  flex: 0 1 calc(40% - 14px);
}

.thematique-card.four {
  flex: 0 1 calc(60% - 14px);
}

.thematique-icon {
  font-size: 25px;
  padding: 8px 12px;
  color: rgb(18, 55, 121);
  width: fit-content;
  background: #fff;
  border: 3px solid #fcae28;
  border-radius: 6px;
}

.thematique-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #fcae28;
  margin: 0 0 10px;
  letter-spacing: -0.40px;
  line-height: 30px;
  border: none;
  text-transform: initial;
  padding-top: 0px !important;
}

.thematique-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, 1);
  letter-spacing: -0.36px;
  line-height: 28px;
  margin: 0;
}

/* ============================================
   SECTION 5 - COUPLAGE BANQUIER CEMAC
   VERSION PROFESSIONNELLE ÉPURÉE
   ============================================ */

.couplage-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
}

/*.couplage-badge {
  margin-bottom: 32px;
}*/

.badge-text {
  display: inline-block;
  background: url(../images/bg/quiz-bg.webp) right / cover no-repeat;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.34px;
  line-height: 27px;
  padding: 8px 28px;
  border-radius: 40px;
}

/* Badge centré 
.bfd-couplage-section .couplage-badge {
  margin-bottom: 40px;
}*/

/* Ligne titre + logos côte à côte */
.couplage-title-logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Titre - prend l'espace disponible à gauche */
.couplage-title-logos-row .couplage-title {
  flex: 1;
  margin-bottom: 0;
  min-width: 280px;
}

/* Logo group - aligné à droite */
.couplage-title-logos-row .logo-group {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Ajustement du séparateur entre logos */
.couplage-title-logos-row .logo-item:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 0px;
  background: #c9a52c;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  background: #123779;
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 48px;
  position: relative;
  transition: all 0.3s ease;
}

.logo-item.bfd {
  padding-left: 48px !important;
}

.logo-item.jcemac {
  padding-right: 48px !important;
}

.logo-group .double {
  font-weight: 500;
  font-size: 28px;
  color: #fff;
}

/*.logo-item.bfd {
  padding-right: 10px !important;
}
.logo-item.jcemac {
  padding-left: 10px !important;
}*/

.logo-item:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c9a52c, transparent);
}

.logo-item img {
  width: 160px;
  height: auto;
}

.logo-item.jcemac img {
  width: 120px;
  height: auto;
}

.logo-item .logo-bfd {
  filter: brightness(0) invert(1);
}


.logo-item span {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.6px;
  line-height: 25px;
  color: #fcae28;
  text-align: center;
}

/* Titre */



/* Description */
.couplage-description {
  font-size: 20px;
  color: #000;
  line-height: 30px;
  letter-spacing: -0.40px;
  margin-top: 30px;
}

.couplage-description span {
  font-weight: 700;
  color: #010b40;
}

.participants-gallery {
  margin-top: 48px;
}

.gallery-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

.gallery-photo {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  object-position: center 30%;
  /* ajuste le cadrage vertical */
  display: block;
  transition: transform 0.4s ease;
}

/* Légende minimaliste */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 120px 28px 60px;
  background: linear-gradient(to top,
      rgba(18, 55, 121, 0.92) 0%,
      rgba(18, 55, 121, 0.5) 60%,
      transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.caption-number {
  font-size: 30px;
  letter-spacing: -1.2px;
  line-height: 40px;
  font-weight: 700;
  color: #fcae28;
  text-transform: uppercase;
}

.caption-number sup {
  text-transform: lowercase;
}

.caption-text {
  font-size: 20px;
  letter-spacing: -0.80px;
  line-height: 30px;
  font-weight: 500;
  color: #ffffff;
}

.programme-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
}

/* En-tête de section */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-title {
  margin-bottom: 16px !important;
}

.section-header p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Grille des cartes */
.programme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Carte jour */
.event-card {
  flex: 1;
  min-width: 320px;
  background: white;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

/* Bandeau date */
.date-badge {
  background: #082a46;
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.day-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: #d49d3f;
}

.month-year {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.separator {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0 0.25rem;
}

/* Contenu */
.card-content {
  padding: 1.5rem;
}

.event-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.event-time {
  font-size: 0.9rem;
  color: #3b82f6;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Liste des sessions (remplace le programme classique) */
.sessions-list {
  background: rgb(8, 42, 70, 0);
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0 1.5rem;
}

.sessions-list h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  color: #d49d3f;
}

/* ---------- Items ---------- */
.session-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
}

/* ---------- Icône ---------- */
.session-icon {
  width: 40px;
  height: 40px;
  min-width: 30px;
  border-radius: 8px;
  background: #082a46;
  display: flex;
  align-items: center;
  justify-content: center;
}

.session-icon i {
  font-size: 18px;
  color: #d49d3f;
}

/* conteneur principal – épuré, aéré */
.section-2025 {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 40px;
}

.section-2025 .bfd-2026-title {
  margin-bottom: 15px !important;
}

.partner-logo-slider.partners-sponsors-2026 h2 {
  color: #123779 !important;
  text-transform: capitalize;
}

.partner-logo-slider.partners-sponsors-2026 h2::after {
  display: none !important;
}

.section-2025 .section-title::after {
  margin: initial;
}

/* grille équilibrée : texte à gauche, image à droite */
.retro-grid {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.retro-content {
  flex: 1.2;
  min-width: 280px;
}

.retro-media {
  flex: 1;
  min-width: 280px;
}

/* titres et textes épurés */
.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #2c7a4d;
  margin-bottom: 0.75rem;
  display: inline-block;
  border-left: 3px solid #2c7a4d;
  padding-left: 0.75rem;
}

.section-title {
  font-size: 39px;
  letter-spacing: -0.78px;
  line-height: 49px;
  font-weight: 800;
  color: #0f2b3d;
  margin-bottom: 1.5rem;
}

.description {
  font-size: 17px;
  letter-spacing: -0.68px;
  line-height: 27px;
  color: #000000;
  margin: 0;
  width: 100%;
}

.description-2025 {
  font-size: 20px;
  color: #000000;
  line-height: 30px;
  letter-spacing: -0.40px;
  margin: 0;
  width: 100%;
}

/* image – élégante, cadre discret, bords doux */
.image-wrapper {
  overflow: hidden;
  background-color: #eef2f5;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s;
}

/* responsive */

@media (max-width: 1200px) {
  .banner.bfd2026-banner .swiper-slide {
    padding-left: 50px;
  }

  .banner-text.bfd2026-text {
    padding-top: 100px !important;
    max-width: 100%;
  }

  .couplage-wrapper {
    max-width: initial;
    width: 95%;
  }
}

@media (max-width: 991px) {
  .couplage-title-logos-row {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .couplage-title-logos-row .couplage-title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .couplage-title-logos-row .logo-group {
    width: 100%;
  }

  .couplage-title-logos-row {
    gap: 24px;
    margin-bottom: 36px;
  }
}

@media (max-width: 576px) {
  .couplage-wrapper {
    max-width: initial;
    width: 93%;
  }

  .logo-item span {
    display: none;
  }

  .logo-group {
    max-width: initial;
    width: 100%;
    padding: 20px 0px;
  }

  .bfd-couplage-section {
    padding: 40px 0;
  }

  .badge-text {
    font-size: 11px;
    padding: 6px 18px;
  }

  .logo-item {
    padding: 20px 16px;
  }

  .logo-item img {
    width: 120px !important;
  }

  .logo-item .logo-cemac {
    width: 140px;
  }

  .logo-item span {
    font-size: 12px;
  }

  .couplage-description {
    font-size: 14px;
    line-height: 1.6;
  }

  .highlight-text {
    font-size: 12px;
  }

  .institutional-mention span {
    font-size: 10px;
  }

  .participants-gallery {
    margin-top: 28px;
  }
}

@media (max-width: 1200px) {
  .programme-section {
    max-width: initial;
    width: 95%;
  }
}

@media (max-width: 991px) {}

@media (max-width: 768px) {
  .event-card {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .programme-section {
    max-width: initial;
    width: 90%;
  }
}

@media (max-width: 1200px) {
  .section-2025 {
    max-width: initial;
    width: 95%;
  }

  .section-2025 h2::after {
    margin-top: 12px !important;
  }
}

@media (max-width: 991px) {
  .retro-content {
    min-width: 100%;
  }

  .retro-media {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .event-card {
    min-width: 100%;
  }
}

@media (max-width: 576px) {
  .section-2025 {
    max-width: initial;
    width: 93%;
  }

  .retro-grid {
    gap: 2rem;
  }

  .banner.bfd2026-banner .swiper-slide {
    padding-left: 10px;
  }

  .hero-groupe-logo {
    height: 60px;
  }



  .bfd2026-text h1 br {
    display: none;
  }

  .location {
    flex-direction: column;
    align-items: last baseline;
    gap: 15px;
  }

  .bfd2026-theme-wrap h1 {
    font-size: 25px;
    letter-spacing: -0.5px;
    line-height: 35px;
  }

  .bfd2026-theme-wrap h3 {
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 32px;
  }

  .cta-text h3 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -0.6px;
  }

  .hero-bfd-2026 .event-location span {
    line-height: 25px !important;
  }

  .event-location {
    align-items: initial;
  }

  .event-location i {
    margin-top: 3px;
  }

  .event-location span {
    font-size: 1.2rem;
  }

  .banner-countdown {
    display: flex;
    gap: 18px;
    margin-top: 25px;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 16px;
    border: 0.5px solid rgb(255, 214, 0, 0.7);
  }

  #cd-days,
  #cd-hours,
  #cd-minutes,
  #cd-seconds {
    font-size: 1.5rem;
  }

  .countdown-item {
    padding: 10px;
  }

  .banner-btns {
    gap: 0px;
    margin-top: 0px;
  }

  .bfd2026-cta-row .banner-btns {
    margin-top: 0px;
  }
}





.cta-edition-2026 {
  padding: 100px 0 40px 0;
}

.cta-edition-2026 .container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-edition-2026 .content {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 80px 50px;
  background: url(../images/bg/cta-edition-2026.webp) center/cover no-repeat;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}


.cta-edition-2026 .content h1,
.cta-edition-2026 .content p,
.cta-edition-2026 .content .btn-main {
  position: relative;
  z-index: 1;
}

.cta-edition-2026 .content h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.80px;
  line-height: 50px;
}

.cta-edition-2026 .content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: -0.8px;
  line-height: 30px;
  max-width: 560px;
}

.chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 4000;
  background: #fff;
  border-radius: 50%;
}

.chat::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  /* couleur du halo */
  animation: glow 1.8s infinite;
  z-index: -1;
}

.chat img {
  width: 70px;
  height: auto;
  display: block;
}

@keyframes glow {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.cards-pass {
  padding-bottom: 100px;
}

.card-pass {
  width: 100%;
  height: 100%;
  background: url(../images/bg/cta-edition-2026.webp) left/ cover no-repeat;
  border-radius: 22px;
}

.card-pass-main {
  padding: 44px 40px 32px;
}


.pass-name {
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -1.36px;
  line-height: 39px;
  color: #fff;
  text-transform: uppercase;
}

.pass-desc {
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  font-weight: 300;
}

.pass-desc span {
  display: block;
  font-weight: 700;
  padding: 10px 0px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 26px;
}

.pass-price {
  font-size: 40px;
  line-height: 45px;
  letter-spacing: -0.8px;
  font-weight: 700;
  color: #F6F3EA;
  margin: 0;
}

.pass-price span {
  color: #fcae28;
}

.price-note {
  font-size: 12.5px;
  color: #6E7E8F;
}

.cta-reserve {
  display: block !important;
  max-width: 100% !important;
  text-align: center !important;
}

/* perforation — le "détachement" façon billet */
.perforation {
  position: relative;
  height: 0;
  border-top: 2px dashed rgb(252, 174, 40, 0.6);
}

.perforation::before,
.perforation::after {
  content: '';
  position: absolute;
  top: -12px;
  width: 24px;
  height: 24px;
  background: #fff;
  /* doit correspondre au fond de la page */
  border-radius: 50%;
}

.perforation::before {
  left: -12px;
}

.perforation::after {
  right: -12px;
}

.card-pass-stub {
  padding: 32px 40px 40px;
}

.avantages-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.40px;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
}

.avantages-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.avantages-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  font-weight: 300;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.avantages-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.check {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 23px;
  color: #fcae28;
  font-weight: 400;
  padding-top: 2px;
}

.ref {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #4A5A6B;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

