

.section-title {
  color: #0d3b66; /* Bleu foncé professionnel */
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}



html {
    scroll-behavior: smooth;
  }
  
   /* Réinitialisation des marges/paddings par défaut du navigateur */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  /* Container centralisé utilisé partout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }


/*nouveau css ajouté par moi */  

  /* ===================== */
/* NAVBAR - ICAOTA STYLE */
/* ===================== */
/* ✨ Astonishing NavBar ✨ */

nav {
  background-color: rgba(0, 20, 40, 0.92); /* very dark navy blue */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.navbar-brand img {
  max-height: 60px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}
.navbar-brand img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px #00ffff);
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s, transform 0.3s;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: relative;
}
.nav-links a::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #00f0ff, #ff00f7);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}
.nav-links a:hover::before {
  opacity: 0.2;
}
.nav-links a:hover {
  color: #00ffff;
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 200px;
  background: rgba(10, 10, 30, 0.85);
  backdrop-filter: blur(15px);
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.dropdown-content.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-content a {
  padding: 12px 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.dropdown-content a:hover {
  background: rgba(0, 255, 255, 0.1);
  color: #00ffff;
}

/* Responsive adjustments */

/* Large desktops: 1200px - 1400px */
@media (min-width: 1200px) and (max-width: 1400px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }
  .nav-links a {
    flex: 0 1 auto;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    text-align: center;
  }
}

/* Medium desktops/tablets: 1024px - 1199px */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
  }
  .nav-links a {
    flex: 0 1 auto;
    font-size: 0.85rem;
    padding: 0.3rem 0.4rem;
    text-align: center;
  }
}

/* Desktop and larger: 1024px and above */
@media (min-width: 1024px) {
  nav .container {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: rgba(10, 10, 30, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    flex-direction: column;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1000;
  }

  .dropdown:hover > .dropdown-content {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
    z-index: 1;
  }
}

/* Mobile and tablets: 1023px and below */
@media (max-width: 1023px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 51, 102, 0.8);
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.4s ease forwards;
  }

  .nav-links a {
    padding: 0.8rem 2rem;
    width: 100%;
    text-align: center;
  }

  .dropdown-content {
    position: static;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dropdown-content a {
    color: #fff;
  }

  .dropdown-content a:hover {
    background-color: rgba(0, 255, 255, 0.15);
  }

  .dropdown-content.show {
    display: flex;
  }
}

/* Slide down animation for mobile menu */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
  /* === Section d'accueil === */
/* ===== Accueil Professionnel ===== */
/* Nouveau conteneur flex */

/* Titre principal : bleu élégant avec ombre douce */
.titre-principal {
  font-size: 3.5rem;
  font-weight: 700;
  color: #d4af37; /* Slightly brighter gold for stronger contrast */
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6), /* Stronger shadow for better separation */
    0 0 10px rgba(255, 215, 0, 0.3); /* Optional subtle glow for elegance */
 
  letter-spacing: 1px;
  margin-bottom: 20px;
}


/* Slogan : blanc doux avec meilleure lisibilité */
.slogan {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff; /* blanc pur */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7); /* meilleure lisibilité sur fond sombre */
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.accueil-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
    padding: 20px 20px;
  margin-top: 0;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

/* Logo à gauche */
.logo-container {
  flex: 0 0 auto;
  margin-right: 40px;
}

.logo-container img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


/* Responsive: logo au-dessus */
@media (max-width: 768px) {
  .accueil-wrapper {
    flex-direction: column;
  }

  .logo-container {
    margin: 0 0 20px 0;
  }

  .logo-container img {
    width: 100px;
    height: 100px;
  }
}




#accueil {
  position: relative;
  min-height: 100vh;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 20px;
  margin: 0;
  margin-top: -40px;
  background-attachment: fixed;
  padding-top: 20px;
  overflow: hidden;
  z-index: 1;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

.background-blur {
  position: fixed; /* pour rester en arrière-plan, même en scrollant */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: linear-gradient(
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)
  );

  filter: blur(8px);
  transform: scale(1.05);
  z-index: -1;
}

.main-content {
  position: relative;
  z-index: 1;
}
#accueil .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* ← filtre sombre ici */
  z-index: 1;
}



/* Disable fixed background on mobile */
@media (max-width: 768px) {
  #accueil {
    background-attachment: scroll;
    padding: 50px;
  }
}
.contenu-accueil {
  flex: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px ;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}
.titre-principal {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.slogan {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 40px;
}

.btn-inscription {
  background-color: #00aced;
  color: white;
  padding: 14px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
  margin-bottom: 60px;
}

.btn-inscription:hover {
  background-color: #0084a5;
}

#countdown {
  margin-top: 20px;
}

.compteur-titre {
  font-size: 1.7rem;
  color: #d4af37; /* Slightly brighter gold for stronger contrast */
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6), /* Stronger shadow for better separation */
    0 0 10px rgba(255, 215, 0, 0.3); /* Optional subtle glow for elegance */
 
  
  margin-bottom: 20px;
  font-weight: 700;
}

.compteur-temps {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 3rem;
  font-weight: bold;
  color: #d4af37; /* Slightly brighter gold for stronger contrast */
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6), /* Stronger shadow for better separation */
    0 0 10px rgba(255, 215, 0, 0.3); /* Optional subtle glow for elegance */

}

.compteur-temps div {
  text-align: center;
}

.compteur-temps small {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
  opacity: 0.9;
  font-weight: 500;
}

  /* === À propos de la conférence === */

/* Animation de fondu avec décalage vers le haut */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

  
#about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 40px;
    gap: 40px;
    background-color: #f5f7fa;
    text-align: left;
  }
  
  #about img {
    max-width: 500px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  #about h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
  }
  
  #about p {
    max-width: 600px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
  }
  /* === Orateurs invités === */
/* Slide-in depuis la gauche */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  
  .slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Slide-in depuis la droite */
  .slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  
  .slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
  }
  

/* === Orateurs invités === */

/* Section globale */
#speakers {
    padding: 80px 40px;
    background-color: #ffffff;
    text-align: center;
  }
  
  #speakers h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 50px;
  }
  
  /* Conteneur des cartes */
  .speakers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
  }
  
  /* === Animation d’apparition élégante === */
  
  /* Effet slide-up + zoom léger */
  .speaker-card {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  
  /* Quand visible à l'écran */
  .speaker-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  
  /* Délai progressif pour un effet en cascade */
  .speaker-card:nth-child(1) {
    transition-delay: 0.2s;
  }
  .speaker-card:nth-child(2) {
    transition-delay: 0.4s;
  }
  .speaker-card:nth-child(3) {
    transition-delay: 0.6s;
  }
  
  /* Style de la carte */
  .speaker-card {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* Image de l’orateur */
  .speaker-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Nom et description */
  .speaker-card h5 {
    font-size: 1.25rem;
    color: #003366;
    margin-bottom: 10px;
  }
  
  .speaker-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
/* === Section Programme === */
/* --------- MOBILE SWIPE STYLE --------- */
@media (max-width: 768px) {
  #programme {
    padding: 30px 20px;
  }

  #programme h2 {
    font-size: 2rem;
  }

  .day-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .day-selector button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  #programme-content {
    padding: 0 10px;
    text-align: left;
  }

  .programme-day {
    padding: 15px 20px;
  }

  .programme-day .time {
    font-size: 1rem;
  }

  .programme-day h5 {
    font-size: 1.1rem;
  }

  .programme-day p {
    font-size: 0.95rem;
  }

  .programme-download a {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}






#programme {
    background-color: #f5f7fa;
    padding: 40px 40px;
    text-align: center;
  }
  
  #programme h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
  }
  
  /* Boutons des jours */
  .day-selector {
    margin-bottom: 30px;
  }
  
  .day-selector button {
    background-color: #003366;
    color: #fff;
    border: none;
    padding: 12px 24px;
    margin: 0 10px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .day-selector button:hover,
  .day-selector button.active {
    background-color: #0059b3;
    transform: scale(1.05);
  }
  
  /* Contenu du programme */
  #programme-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .programme-day {
    background: #ffffff;
    border-left: 4px solid #0073e6;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  /* Animation quand visible */
  .programme-day.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .programme-day .time {
    font-weight: bold;
    color: #0073e6;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
  }
  
  .programme-day h5 {
    margin: 0 0 5px;
    font-size: 1.3rem;
    color: #002b5e;
  }
  
  .programme-day p {
    margin: 0;
    color: #444;
    line-height: 1.6;
  }
  
  /* Lien PDF */
  .programme-download a {
    display: inline-block;
    margin-top: 30px;
    background-color: #0073e6;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  
  .programme-download a:hover {
    background-color: #005bb5;
  }
  /* === Section Inscription === */
 .form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
  }

  .form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #003366;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
  }

  .form-group input[type="text"],
  .form-group input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
  }

  .form-group input:focus {
    border-color: #0077cc;
    outline: none;
  }

  .form-container input[type="submit"] {
    width: 100%;
    padding: 14px;
    background-color: #003366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .form-container input[type="submit"]:hover {
    background-color: #0055aa;
  }

  /* === Section Infos Pratiques === */
#infos-pratiques {
    background-color: #f4f7fc;
    padding: 80px 20px;
    text-align: center;
  }
  
  #infos-pratiques h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 50px;
  }
  
  /* Container principal */
  #infos-pratiques > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* Carte individuelle (lieu, transport, etc. s’il y en a d'autres) */
  #infos-pratiques > div > div {
    background-color: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  #infos-pratiques > div > div:hover {
    transform: translateY(-5px);
  }
  
  #infos-pratiques i {
    font-size: 2.5rem;
    color: #0073e6;
    margin-bottom: 15px;
  }
  
  #infos-pratiques h4 {
    font-size: 1.4rem;
    color: #003366;
    margin-bottom: 10px;
  }
  
  #infos-pratiques p {
    font-size: 1rem;
    color: #333;
  }
  
 /* === Section Partenaires & Sponsors === */
#partenaires {
  background-color: #f5f7fa;
  padding: 40px 20px;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

#partenaires h2 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

#partenaires h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background-color: #003366;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Grille des logos */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
}

/* Logos généraux */
#partenaires img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
  filter: grayscale(100%);
  opacity: 0.6;
}

#partenaires img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}

/* Logo circulaire */
#partenaires img[alt*="HKodeAI"] {
  border-radius: 50%;
  border: 2px solid #00336610;
  padding: 10px;
  background-color: #f9f9f9;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile : deux logos en haut, le 3e centré seul en bas */
@media (max-width: 600px) {
  .logos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logos-grid .center-mobile {
    grid-column: 1 / -1; /* occupe toute la ligne */
    justify-self: center;
  }

  #partenaires img {
    max-height: 60px;
  }
}









/* === Section Localisation (Google Maps) === */
#location {
    padding: 40px 40px;
    background-color: #f5f7fa;
    text-align: center;
  }
  
  #location h2 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 40px;
  }
  
  /* Amélioration responsive de l’iframe */
  #location iframe {
    width: 100%;
    height: 450px;
    max-width: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }

  /* === Animation fade-in pour le footer === */
/* Animation fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

/* Classe déclenchée */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation keyframes (inutile ici si on utilise transition propre) */

  
  @keyframes fadeInFooter {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  #site-footer {
    background-color: rgba(0, 20, 40, 0.92); /* very dark navy blue */
    color: #ffffff;
    padding: 60px 40px 30px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-about, .footer-links, .footer-pages {
    flex: 1 1 250px;
  }
  
  .footer-about h4,
  .footer-links h4,
  .footer-pages h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-about p {
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .footer-social a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.2rem;
    color: #ffffff;
    transition: color 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #00aced;
  }
  
  .footer-links ul,
  .footer-pages ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-pages li {
    margin-bottom: 10px;
  }
  
  .footer-links a,
  .footer-pages a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
  }
  
  .footer-links a:hover,
  .footer-pages a:hover {
    color: #00aced;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    color: #cccccc;
  }

  

/* === Event Info Section === */
.where-when {
  background: linear-gradient(135deg, #e6f0fa, #fefefe);
  color: #003366;
  padding: 40px 40px;
  text-align: center;
}

.where-when h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #002147;
}

.where-when p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 25px;
}

.stats-section {
  background-color: #f5f7fa;
  padding: 40px 40px;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-box strong {
  font-size: 3rem;
  color: #0073e6;
  font-weight: bold;
  display: inline-block;
}

.stat-box span {
  display: block;
  font-size: 1.1rem;
  color: #003366;
  margin-top: 8px;
}
.counter {
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
}

.key-highlights {
  background: #f5f7fa;
  padding: 40px 40px;
  text-align: center;
 }

.highlight-title {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 50px;
  font-weight: 700;
}

.highlight-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.highlight-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  padding: 25px 30px;
  max-width: 320px;
  text-align: left;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-8px);
}

.highlight-item i {
  font-size: 2rem;
  color: #0073e6;
  margin-top: 4px;
}

.highlight-item h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #002147;
  font-weight: 600;
}

.highlight-item p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .titre-principal {
    font-size: 2.2rem;
  }

  .slogan {
    font-size: 1.2rem;
  }

  .btn-inscription {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .compteur-temps {
    flex-direction: column;
    gap: 20px;
    font-size: 2.2rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-about, .footer-links, .footer-pages {
    text-align: center;
  }
}
