
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* ===== RESET ===== */
* {
  margin: 0 ;
  padding: 0;
  box-sizing: border-box;
  list-style :none;
  font-family: "Lato", sans-serif;

}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}
/* === Style général du canvas des particules === */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.8;
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

section {           
  position: relative;
  overflow: hidden;
}





body,html {
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden; /* empêche le scroll horizontal */
  margin: 0;
  padding: 0 ;
}
/* Loader overlay */
#loader-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top-color: #c58bf2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Modal overlay */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  min-width: 280px;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-content button {
  margin-top: 15px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: #ff31ee;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
}

/* ===== NAVBAR ===== */


/* === NAVBAR BASE === */
.navbar {
  position: fixed; /* navbar reste toujours en haut */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2%;
  background: rgba(255, 255, 255, 0.5); /* transparent avec un peu d'opacité */
  backdrop-filter: blur(10px); /* flou derrière la navbar pour un effet glass */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}


/* === LOGO === */
.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-dark);
  text-decoration: none;
  font-style: italic;

}


/* === NAV LINKS === */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 50px;
   font-style: italic;
  
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #c58bf2;
  transform: translateY(-3px) scale(1.05);
 

}

/* === BUTTON PRIMARY === */
.btn-primary {
  background-image: linear-gradient(135deg, #cff7e1 10%, #c58bf2 50%, #f8b88b 100%);
  color: white;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Add this to your stylesheet */
.button-spacing {
    margin-right: 15px; /* Adjust this value to control the gap size */
}

/* Optional: If the buttons are stacked on mobile, you might want to remove the margin */
@media (max-width: 600px) {
    .button-spacing {
        margin-right: 0;
        margin-bottom: 10px; /* Example for stacking */
    }
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);

}

/* === HAMBURGER MENU === */   
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000000;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* === MOBILE MENU === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 5%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    width: 80%;
    max-width: 300px;
    transform: translateY(-200%) scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  .btn-primary {
    display: none;
  }
}
/* ===== HERO ===== */
/* === HERO SECTION === */
:root {
  --navbar-height: 80px; /* hauteur de la navbar fixe */
}

.new-hero{
  width: 100%;
  padding-top: 80px;
  background-color: transparent;
}
.box-container{
  width: 100%;
  height: 100%;
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 20px;
  margin: 0 auto 0 20px;



}
.title-container h1{
  line-height: normal;
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  white-space: nowrap;
  align-self: center;      /* centre verticalement dans sa cellule */
  color: #000;
  margin-bottom: 20px;
  margin-top: 25px;
  text-align: top;
}
.box1{
  
  margin-top: 10px;

}
.box2{

  margin-top: 10px;

}
.img img{
  width: 100%;
  border-radius: 20px;
}
.hero-text p{
  font-family: "Lato", sans-serif;
  font-weight: 700;
  max-width: 90%;
  margin-bottom: 4rem; /* ✅ réduit espace avant les boutons */
  line-height: 1.5;
  font-style: italic;
  font-size: larger;
}
.hero-buttons a {
  background-image: linear-gradient(135deg, #cff7e1 10%, #c58bf2 50%, #f8b88b 100%);
  color: white;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;


}

.hero-btn{
  margin-left: 15px;
  

}
/* ✅ Responsive forcé et prioritaire */
@media screen and (max-width: 1024px) {
  .box-container {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 25px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .box1, .box2 {
    width: 90% !important;
    margin-top: 0 !important;
  }

  .img img {
    width: 100% !important;
    height: auto !important;
  }

  .title-container h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem) !important;
    text-align: center !important;
    white-space: normal !important; /* ✅ casse enfin les lignes */
    line-height: 1.3 !important;
  }

  .hero-text p {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .hero-btn {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  .new-hero {
    padding-top: 60px !important;
  }
  .hero-btn {
    gap: 20px !important; /* ✅ espace entre les boutons en mobile */
  }

  .hero-text p {
    font-size: 0.95rem !important;
  }

  .hero-buttons a {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }

  .title-container h1 {

    font-size: clamp(1.4rem, 7vw, 2rem) !important;
  }
}





/* ---- ABOUT ---- */
/* === ABOUT SECTION === */
#about {
  margin-top: 80px;
}

.about-container {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
}

.about-text {
  margin-top: 38px;
  width: 50%;
  margin-left: 20px;
}

.about-text h1 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  font-style: italic;
  margin-bottom: 20px;
  color: #000;
}

.about-text p {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  max-width: 90%;
  margin-bottom: 3rem;
  line-height: 1.5;
  font-style: italic;
  font-size: larger;
  text-align: left;
}

.about-img {
  width: 48%;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.about-text a {
  display: inline-block;
  background-image: linear-gradient(135deg, #cff7e1 10%, #c58bf2 50%, #f8b88b 100%);
  color: white;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
}

.about-text a:hover {
  transform: translateY(-3px);
}

/* ✅ Responsive - mobile et tablette */
@media screen and (max-width: 1024px) {
  .about-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 30px !important;
  }

  .about-img {
    order: 1; /* image d'abord */
    width: 90% !important;
  }

  .about-text {
    order: 2;
    width: 90% !important;
    margin: 0 auto !important;
  }

  .about-text h1 {
    font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
    margin-bottom: 15px !important;
  }

  .about-text p {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
  }

  .about-text a {
    display: inline-block !important;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 600px) {
  .about-container {
    gap: 20px !important;
  }

  .about-img {
    width: 95% !important;
  }

  .about-text h1 {
    font-size: clamp(1.4rem, 7vw, 2rem) !important;
  }

  .about-text p {
    font-size: 0.95rem !important;
  }

  .about-text a {
    padding: 0.6rem 1.3rem !important;
    font-size: 0.9rem !important;
    margin-bottom: 35px !important;
  }
}



/* ===== LEARNING MODULES ===== */
/* === SECTION MODULES (style carousel témoignages) === */
.modules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  padding: 1rem 2%;
  box-sizing: border-box;
  overflow: hidden; /* empêche le scroll horizontal */
}
.modules-section {
  text-align: center; /* centre tous les éléments en ligne */
}

.modules-section .section-title {
  margin-top: 1.5rem;
  margin-bottom: 1rem; /* espace sous le titre */
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.modules-section .registration-fee {
  margin-bottom: 3rem; /* espace avant les cartes */
  font-weight: 500;
  color: #333;
}

/* ======================== */
/* ===== MODULES SECTION ===== */
/* ======================== */

.modules-section {
    text-align: center;
   
}

.section-title {
    font-size: 2.5rem;
    color: #000000;
}

.registration-fee {
    font-size: 1.1rem;
    color: #0fc053; /* Couleur de la marque pour le prix */
    font-weight: 600;
    display: inline-block;
    margin: 0;
    padding: 0;
}

/* --- Container des Cartes --- */
.modules-container {
    display: grid;/* Grid pour un agencement en 3 colonnes sur grands écrans */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Espace entre les cartes */
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Style de la Carte de Module --- */
.module-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Assure que l'image est contenue */
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.module-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.module-card.reveal {
  opacity: 1;
  transform: translateY(0);
}


.module-card:hover {
    /* Effet au survol pour donner vie à la carte */
    transform: translateY(-5px);
}

/* --- Image --- */
.module-image {
    height: 180px; /* Hauteur fixe pour l'image */
    overflow: hidden;
}

.module-image img {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    object-fit: cover; /* Assure que l'image couvre la zone sans être déformée */
    transition: transform 0.5s ease;
}

.module-card:hover .module-image img {
    transform: scale(1.05); /* Petit zoom au survol */
}

/* --- Contenu Texte --- */
.module-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Permet au contenu de s'étendre et de centrer le bouton */
    justify-content: space-between;
}
.module-card {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: 
    opacity 0.5s ease-out,       /* réduit de 0.8s à 0.5s */
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.module-card.reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.module-content h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.module-content p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* --- Badge de Prix --- */
.price-badge {
    display: inline-block;
    color: #000000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* --- Bouton d'Inscription --- */
/* Bouton d'Inscription */
.btn-enroll {
    /* Propriété modifiée pour ne pas prendre toute la largeur */
    display: inline-block;
    
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    /* Ajouté pour centrer le bouton dans la carte */
    margin: 15px auto 0;
  background-image: linear-gradient(135deg, #cff7e1 10%, #c58bf2 50%, #f8b88b 100%);
    color: #000000;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-enroll:hover {
    transform: translateY(-5px) scale(1.05);
    color: #000000;
}



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

/* Pour les tablettes (max 992px) - 2 colonnes */
@media (max-width: 992px) {
    .modules-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .modules-section {
        padding: 40px 5%;
    }
}

/* Pour les mobiles (max 600px) - 1 colonne */
@media (max-width: 600px) {
    .modules-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
/* === TEAM SECTION BASE === */
.team-section {
  padding: 10px 0;
  text-align: center;
  
}

.team-section .section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #000;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.team-section .team-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 3rem;
}

/* === TEAM CARDS === */
.team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;         /* occupe toute la largeur de la section */
  max-width: 100%;     /* supprime la limite précédente */
  margin: 0 auto;
  position: relative;  /* nécessaire pour les pseudo-éléments */
  background: transparent;
  overflow: hidden;    /* pour que les flous ne débordent pas */
  z-index: 0;
}


.team-card {
  padding: 2rem 1rem;
  background-color: transparent; /* fond transparent */
  box-shadow: none; /* supprime l'ombre */
  display: flex;
  flex-direction: column;
  align-items: center; /* centre le contenu horizontalement */
  text-align: center;  /* centre le texte */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-info h3 {
  margin: 0.5rem 0 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.team-info .role {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.3rem;
}
.team-info p {
  font-size: 0.95rem;
  color: #333;
  margin-top: 1rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .team-container {
    grid-template-columns: 1fr; /* une seule colonne sur mobile */
  }
}
/* SECTION CONTACT */

/* ---- TESTIMONIALS SECTION ---- */
/* ==============================
   TESTIMONIALS SECTION
   ============================== */
#testimonials {
  position: relative;
  padding: 5rem 5%;
  overflow: hidden; /* pour contenir les flous */
  text-align: center;
}

/* Titre et sous-titre */
#testimonials h4 {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 0.5rem;
}

#testimonials .section-title {
  font-size: 2rem;
  color: #000;
  margin-bottom: 3rem;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}




/* ==============================
   CARROUSEL DES TESTIMONIALS
   ============================== */
#testimonials .testimonial-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  position: relative;
}

#testimonials .testimonial-item {
  min-width: 280px;
  max-width: 320px;
  flex: 0 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#testimonials .testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

#testimonials .testimonial-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

#testimonials .testimonial-content p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 1rem;
}

#testimonials .testimonial-content h4 {
  margin: 0.5rem 0 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

#testimonials .testimonial-content .role {
  font-size: 0.9rem;
  color: #666;
}

/* ==============================
   SCROLLBAR HIDE MOBILE
   ============================== */
#testimonials .testimonial-carousel::-webkit-scrollbar {
  display: none;
}
#testimonials .testimonial-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #000000;

}

/* Carousel */


/* Carte témoignage */
.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 1rem 1%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;           /* invisible avant reveal */
  transform: translateY(0);
  position: relative;
  animation: float-slow 3s ease-in-out infinite;
}

.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
}

/* Animation flottante subtile */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* Image ronde */
.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

/* Contenu du témoignage */
.testimonial-content p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.testimonial-content h4 {
  margin: 0.3rem 0 0 0;
  font-size: 1.1rem;
  color: #000;
  font-weight: 600;
}

.testimonial-content .role {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.2rem;
}

/* Reveal au scroll */
.testimonial-item.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: reveal-up 0.8s ease forwards, float-slow 3s ease-in-out infinite 0.8s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .testimonial-item {
    padding: 1.5rem 1rem;
  }

  .testimonial-item img {
    width: 70px;
    height: 70px;
  }
}
/* Bouton Swipe Right */
.swipe-right-btn {
  position: absolute;
  bottom: 10px; /* ou top: 50%; selon le design */
  right: 20px;
  background-image: linear-gradient(135deg, #cff7e1 10%, #c58bf2 50%, #f8b88b 100%);
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 10;
  animation: floatSwipe 1.5s ease-in-out infinite;
}

/* Flottement subtil */
@keyframes floatSwipe {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* Icone */
.swipe-right-btn i {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .swipe-right-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

/* ==============================
   1. FAQ SECTION
============================== */
.section-title{
  text-align: center;
  padding: 30px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.faq-item {
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.faq-question {
  cursor: pointer;
  padding: 1rem 1.5rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
}

.faq-answer {
  padding: 0 1.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
  background: #fff;
}

/* ENROLLMENT SECTION */
/* ENROLLMENT SECTION */
.enrollment-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 1rem 1%;
}

.enrollment-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
}

/* LEFT SIDE */
.enrollment-left {
  flex: 1;
  color: #000;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 15px;
}

.enrollment-left h2 {
  font-size: 2rem;

  color: #000;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.enrollment-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 1.5rem;
}

.contact-divider {
  border: none;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 1.5rem 0;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.contact-info i {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* RIGHT SIDE */
.enrollment-right {
  flex: 1;
  color: #000;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: white;

}

/* FORM STYLING */
.enrollment-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.enrollment-form label {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #0000001a;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s;
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus { 
  border-color: #000;
}

/* SUBMIT BUTTON */
.btn-submit {
  background-image: linear-gradient(135deg, #cff7e1 10%, #c58bf2 50%, #f8b88b 100%);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .enrollment-container {
    flex-direction: column;
  }
  
  .enrollment-left,
  .enrollment-right {
    width: 100%;
  }
}
/* ===== FOOTER ===== #90EDB4,#ffc192*/
/* === FOOTER === */
/* === FOOTER === */
/* === FOOTER === */
.footer {
  background-color: #ffffff00; /* fond blanc */
  color: #000000;            /* texte noir */
  margin: 0;
  padding: 3rem 0.5rem 1rem;   /* haut / côtés / bas */
}

/* Container des colonnes */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* aligné à gauche */
  align-items: flex-start;
  gap: 2rem;                  /* espace entre colonnes */
  width: 100%;                /* prend toute la largeur */
  max-width: 1200px;
  margin: 0;                  /* pas de centrage automatique */
  padding: 0;                 /* pas d’espace interne */
}

/* Supprime tout padding/margin interne pour Quick Links */
.footer-links {
  margin: 0;
  padding: 0;
}

/* Titres des colonnes */
.footer-links h3,
.footer-contact h3,
.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #000000;
}

/* Liste de liens */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  display: inline-block;  /* nécessaire pour border-bottom */
  padding-bottom: 2px;    /* espace pour le soulignement */
  color: #000000;          /* texte noir */
  text-decoration: none;   /* supprime trait soulignement par défaut */
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.footer-links ul li a:hover {

  cursor: pointer;
}



/* Icônes sociales */
.footer-column .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.social-icons a{
  text-decoration: none;
}
.footer-column .social-icons a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #000000;          /* icônes noires */
  transition: background 0.3s ease, transform 0.3s ease;
  background: transparent;  /* fond transparent */
}

.footer-column .social-icons a:hover {
  transform: translateY(-4px);
}

/* Partie du bas */
.footer-bottom {
  text-align: center;
  padding: 0.5rem 0;
  margin: 0;
  color: #000000;
  border-top: 1px solid #ddd; /* séparation discrète */
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start; /* aligne au début */
    width: 100%;
  }
  

  .footer-links,
  .footer-contact,
  .footer-column {
    margin-left: 0;
    padding-left: 0;
    justify-content: center; /* ✅ centre les icônes sur mobile */
  }

  .footer {
    padding-bottom: 0; /* enlève le vide bas */
  }

  .footer-bottom {
    margin-top: 0; /* colle parfaitement */
  }
}


/* ==============================
   FOOTER
============================== */
/* Titres colonnes */
.footer-links h3,
.footer-contact h3,
.footer-column h3 {
  margin-bottom: 1rem;
  color: #000;
}

/* Liste de liens */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  display: inline-block;
  padding-bottom: 2px;
  color: #000;
  text-decoration: none;
  transition: border-bottom 0.3s ease, color 0.3s ease;
}

.footer-links ul li a:hover {
  cursor: pointer;
}

/* Icônes sociales */
.footer-column .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-column .social-icons a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #000;
  transition: background 0.3s ease, transform 0.3s ease;
  background: transparent;
}

.footer-column .social-icons a:hover {
  transform: translateY(-4px);
}

/* Partie du bas */
.footer-bottom {
  text-align: center;
  padding: 0.5rem 0;
  margin: 0;
  color: #000;
  border-top: 1px solid #ddd;
}

/* Mobile footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
  }

  .footer-links,
  .footer-contact,
  .footer-column {
    margin-left: 0;
    padding-left: 0;
    justify-content: center;
  }

  .footer {
    padding-bottom: 0;
  }

  .footer-bottom {
    margin-top: 0;
  }
}
