@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 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;
}
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: auto;
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav img {
  width: 120px;
  height: 50px;
}

header nav #navMenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 25px;
}

header nav #navMenu .link-partner {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

header nav #navMenu .ul-partenaire {
  display: none;
}

header nav #navMenu .ul-partenaire ul {
  width: 200px;
  height: auto;
  position: absolute;
  padding-top: 45px;
}

header nav #navMenu .ul-partenaire ul .ul-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  background-color: rgb(8, 42, 70, 0.95);
  padding: 20px 25px 20px 25px;
}

header nav #navMenu .ul-partenaire ul .ul-container a {
  font-size: 13.5px;
}

header nav a {
  text-decoration: none;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-style: normal;
}

header nav button {
  width: 150px;
  padding: 15px;
  background-color: #d49d3f;
  border: #d49d3f;
  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;
}

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;
}

/* 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: 1.05rem;
  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;
}

.btn-main:hover,
.btn-register:hover,
.btn-opportunites:hover,
.apropos-button:hover,
.btn-thematiques:hover,
.partenaire-button:hover {
  background-color: #fff;
  color: #082a46 !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%;
  height: 100vh;
}

.swiper {
  display: flex;
  width: 100%;
  position: relative;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  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: 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: #f9f7f5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 35px;
}

.banner-text span {
  font-size: 40px;
  font-weight: bold;
}

.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;
  max-width: 75%;
  background: none;
  padding-top: 80px;
  padding-right: 60px;
  padding-bottom: 0;
  padding-left: 40px;
  border-radius: 0;
  color: #fff;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
}

/* Style pour le lieu de l'événement */
.event-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.event-location i {
  font-size: 1.5rem;
  color: #ffd600;
}

.event-location span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
}

/* 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;
}

.banner-countdown {
  display: flex;
  gap: 18px;
  margin: 18px 0 12px 0;
  align-items: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.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: 0.85rem;
  color: #fff;
  margin-top: 2px;
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

/* --- 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,
h2 {
  text-align: start;
  font-size: 39px;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  display: block;
}

.apropos-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 0 0 10px;
}

.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: 16.5px;
  color: #222;
  line-height: 1.7;
  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: 1.5rem;
  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: 16.5px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* --- Section Partenaires (CSS Keyframe Marquee) --- */
.partner-logo-slider {
  padding: 60px 0;
  overflow: hidden;
}

.partner-logo-slider h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  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: 10px auto 10px;
}

.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: 2rem;
  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: 2rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.opportunites-header p {
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.7;
  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.55);
  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 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 22px;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.join-us-content p {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.6;
  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: #082a46;
  padding-top: 10px;
  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: 120px;
  height: 50px;
}

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: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

footer .container strong {
  color: white;
  text-transform: uppercase;
  font-size: 1.2rem;
}

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;
}

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;
}

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: 1rem;
  outline: none;
}

footer .container .newsletter input::placeholder {
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
}

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;
}

.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-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: 3.7rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1px;
  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: 2.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 0 0 10px;
}

.about-text {
  text-align: left;
  font-size: 16.5px;
  color: #000;
  line-height: 1.7;
  margin: 0 auto;
}

/* Participants */

.scrolling-cards {
  background: #f9f9f9;
  padding: 60px 20px 100px 20px;
  position: relative;
  color: #082a46;
}

.scrolling-cards .section-title {
  text-align: center;
  font-size: 2.6rem;
  color: #082a46;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scrolling-cards .section-intro {
  text-align: center;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  color: #000;
}

.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: 1.1rem;
  margin-bottom: 12px;
  color: #d49d3f;
}

.participant-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 16.5px;
  line-height: 1.7;
}

.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: 2.6rem;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.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: 2rem;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.partenaire .presentation p {
  font-weight: 400;
  font-size: 16.5px;
  line-height: 35px;
  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;
  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;
  line-height: 25px;
  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: 2rem;
  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;
}

.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: 2.6rem;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.bangui .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 0 0 10px;
}

.bangui .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.bangui .presentation h4 {
  font-weight: 500;
  max-width: 90%;
  font-size: 2rem;
  margin: 0;
  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: 1.5rem;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.bangui .presentation .aboutbangui .txt p {
  font-weight: 400;
  font-size: 16.5px;
  line-height: 35px;
  margin: 0;
  color: #000;
}

.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: 16.5px;
  line-height: 35px;
  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: 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;
}

.contact .presentation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #d49d3f;
  margin: 0 0 10px;
}

.contact .presentation {
  margin-top: 100px;
  margin-bottom: 100px;
}

.contact .presentation h4 {
  font-weight: 500;
  max-width: 100%;
  font-size: 2rem;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.contact .presentation p {
  font-weight: 400;
  font-size: 16.5px;
  line-height: 35px;
  margin: 0;
}

.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 div {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.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"] {
  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: 106%;
  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;
}

.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 {
  width: 85%;
  margin: auto;
  margin-top: 50px;
}

.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-weight: 400;
  font-size: 16.5px;
  line-height: 35px;
  margin: 0;
}

.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;
  color: #082a46;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  z-index: 1;
  letter-spacing: 1px;
}

.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) {
  .partners-title {
    font-size: 22px;
  }

  .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: 10px 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 {
  font-size: 1.1rem;
  color: #000;
  margin-left: 0;     
  line-height: 1.6;
}

.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;
  font-weight: 700;
  color: #d49d3f;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fonction {
  font-size: 14px;
  color: #000;
  margin: 0 0 10px 0;
}

.fonction span {
  font-weight: 500;
}

.institution {
  font-size: 14px;
  color: #082a46;
  font-weight: 500;
  line-height: 22px;
  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) {
  .fonction,
  .institution {
    font-size: 12px;
  }

  .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: 2.6rem;
  color: #082A46;
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.medias .presentation h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #D49D3F;
  margin: 10px auto 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-weight: 400;
  font-size: 16.5px;
  line-height: 35px;
  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: 2.6rem;
  color: #082a46;
  font-weight: 800;
  margin-bottom: 32px;
  margin-top: 0;
  letter-spacing: 0.5px;
  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-weight: 400;
  font-size: 16.5px;
  line-height: 1.8;
  margin: 0;
  padding-bottom: 20px;
  color: #000000;
}

.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%;
  font-size: 14px;
  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-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: #082a46;
  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 {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: #000000;
  padding: 0 20px;
  text-align: center;
}
/* --- 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-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.agenda-text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000000;
  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: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  color: #000;
  line-height: 1.6;
}

.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: 2.8rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rapport-text p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  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: 0 0 50px 0; /* Marge à gauche à 0 */
  max-width: 800px;
  font-size: 1.1rem;
  color: #000;
}

.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: 1.8rem;
  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: 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;
}

.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 {
  color: #000; /* Noir */
  font-size: 1.1rem;
  line-height: 1.6;
}

/* 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 {
  color: #082a46;
  font-size: 2.6rem;
  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: 1.1rem;
  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: 1.4rem;
  color: #082a46;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.resource-content p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  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;
  font-size: 1rem;
  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: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.partner-desc-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  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: 1.15rem;
  line-height: 1.8;
  color: #333;
  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, .org-patronage-section {
  padding: 20px 0 40px 0;
  background-color: #fff;
}

.org-subtitle-simple {
  text-align: left;
  font-size: 2rem;
  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: 1.4rem;
  color: #082a46;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.org-card-txt p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  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: 2rem;
  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: 1.4rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

/* Rôle Principal (Blanc) */
.leader-role {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* Job (Blanc, légèrement plus petit) */
.leader-job {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 15px;
  font-style: italic;
  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: 1.05rem;
  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 {
    font-size: 2.4rem;
  }
}

/* --- 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;
    padding: 0 10px;
  }

  .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-content h3 {
    font-size: 1.25rem; /* Titre un peu plus petit */
  }

  .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: 2rem;
  }
}

/* --- 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) 
   et sur Desktop (500px) définie précédemment. */