:root {
  /* Couleurs principales */
  --black: #000000;
  --yellow: #FFCC00;
  --mint:       #E8FDF9;
  --pink:       #F8D2D4;
  /* Couleur d’accent */
  --green: #61BFAC;

  /* Couleurs neutres */
  --white: #FFFFFF;
  --black:      #000000;
  --gray-dark: #333333;
  --gray-light: #F5F5F5;
  --gray-to-black-p: rgb(161, 161, 166);
  --gray-to-title: rgb(245, 245, 247);
  /* Police */
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

/* checkbox yellow accent */
input[type="checkbox"],
input[type="radio"] {
  /* Chrome, Firefox, Edge modernes */
  accent-color: #FFCC00;
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  font-size: 17px;
  text-align: left;
  line-height: 1.47;
  letter-spacing: -0.022em;
}
.p {
  color: #a1a1a6;
  font-size: 17px;
  font-weight: 300;
  
}
/* header superposé */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  transition: background 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}

/* header fixé après scroll */
.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--black);
  opacity: 0.90;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
 
 max-width: 1214px;
 margin: 0 auto;
 padding: 0 2rem;
 width: 100%;
}

/* Logo */
.header-left .logo img {
  height: 24px;
}
@media (max-width: 430px){
  .logo img {
    height: 16px;
  }
}
/* Liens de navigation (desktop) */
.nav-center .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 300;
}

.nav-links a.active {
  color: var(--yellow);
}

/* Conteneur bouton + burger */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 2; /* en desktop, order naturel ne change rien */
}

/* Burger icon (caché sur desktop) */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
}

/* Animation du burger */
.burger.open .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.burger.open .bar:nth-child(2) {
  opacity: 0;
}
.burger.open .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}
/* Bloque le scroll global quand le menu est ouvert */
body.no-scroll {
  overflow: hidden;
  /* Pour certains navigateurs mobiles, on peut aussi : */
  position: fixed;
  width: 100%;
}
@media (max-width: 980px) {

  
  /* 1) On masque la nav hors-écran via translateX */
  .nav-center {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;        /* plein écran */
   
    background: var(--black);
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    
    z-index: 999;       /* en dessous du burger */
    padding: 2rem 1.5rem;
    overflow-y: auto;   /* scroll si beaucoup d’items */
     /* Masqué et transparent par défaut */
    opacity: 0;
    pointer-events: none;
    
    /* Transition sur l’opacité */
    transition: opacity 0.7s ease-in-out;
    z-index: 999;
  
  }

  /* 2) Quand on ajoute .open, on replace la nav à l’écran */
  .nav-center.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* 3) On aligne tous les liens verticalement */
  .nav-links {
    display: flex; 
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-links a {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    margin-left: 2rem;
  }

  /* 4) On force l’affichage du burger et on le place au-dessus */
  .burger {
    display: flex;      /* override display:none sur desktop */
    position: relative;
    z-index: 1000;      /* au-dessus de la nav */
  }
}

  

.section-container {
  max-width: 1214px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  z-index: 200;
}





/* --- HERO --- */
.hero {
  position: relative;       /* nécessaire pour que ::before s’applique */
  min-height: 80vh;
  background-image: url('softskillsimg.jpg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
  text-align: left;
  margin-top: 2rem;

}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;  /* couvre tout */
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media (max-width: 768px) {
  .hero {
    /* 70% de la largeur depuis la gauche, et centré verticalement */
    background-position: 70% center;
  }
}

.titre {
  font-size: 2rem;
 color: var(--black);
 margin-bottom: 2.5rem;
 text-align: left;
 max-width: 600px;
 max-width: 1214px;
 margin: auto;
 margin-bottom: 2rem;

  
}

.titre-yello {
    font-size: 35px;
   line-height: 1.0834933333;
   font-weight: 600;
   letter-spacing: -.003em;
   color: var(--yellow);
   padding-top: 2rem;
   padding-bottom: 2rem;
  
}
.titre-blanc {
 color: var(--white);
 font-size: 2rem;
 margin-bottom: 2rem;
 text-align: left;

 margin-bottom: 2rem;
}
/* Texte et bouton du hero */
.hero h1 {
  /* Texte plus grand */
  font-size: 4rem;
    
    line-height: 1.0834933333;
    font-weight: 600;
    letter-spacing: -.003em;
    color: #FFCC00;
    z-index: 202;
    flex-direction: column;
   
    
}

.hero p {
  /* Paragraphe un peu plus gros */
  font-size: 1.7rem;
    line-height: 1.381002381;
    font-weight: 400;
    letter-spacing: .011em;
 margin-top: 2rem;
 margin-bottom: 2rem;
 
 
 color: rgb(245, 245, 247);
 max-width: 30rem;

 z-index: 200;
}
@media (max-width: 1124px) {
  .hero h1 {
    font-size: 3.8rem;
  }
  .hero p {
    font-size: 1.5rem;
  }}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}
/* --- RESPONSIVE (mobile) --- */
@media (max-width: 768px) {
  .header-left { order: 1; }
  .header-right { order: 2; }
  .nav-center { order: 3; width: 100%; }

  .nav-center .nav-links {
    display: none;
    flex-direction: column;
    background: var(--black);
    width: 100%;
    padding: 1rem 0;
    list-style: none;
    margin-top: 0.5rem;
  }
  .burger { display: flex; }
  .nav-center.open .nav-links { display: flex; }
}



/* --- STATS / HIGHLIGHTS --- */
.stats-highlights {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
 
}

.highlight-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.highlight-icon {
  width: 48px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    padding: 1.2rem;
    text-align: left;
  }

  .highlight-icon {
    margin: 0 auto 1rem auto;
  }
}

/* --- APPROACH SECTION --- */
.approach {
  padding: 2.5rem;
  background: #000000;
}
.approach p {
  color: #a1a1a6;
  font-size: 17px;
  font-weight: 300;
  
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  max-width: 1214px;
  margin: 0 auto;
  padding: 0rem;
  padding-bottom: 2rem;
  text-align: left;
  
}

.approach-item {
 
  padding: 2rem 0rem;
  ;
  text-align: left;
}
.approach-item h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #f5f5f7
  

}
.approche-item p {
  color: #a1a1a6;
  font-size: 17px;
  font-weight: 300;
  
}
.approach p {
  max-width: 600px;
}
.step-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}


@media screen and (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
}

@media screen and (max-width: 600px) {
  .approach-grid {
    grid-template-columns: 1fr;
  padding: 0;
  }

  

  .approach-item h3 {
    font-size: 20px;
  }

  .step-number {
    font-size: 1.5rem;
  }

}

/* --- MODELE ECONOMIQUE --- */
.modele {
  background-color: #ffffff;
  padding: 4rem 1rem;
}

.modele h2 {
  color: #111;
}
.modele p{
  max-width: 600px;
}
/* --- PARTNERSHIPS --- */
.partnerships {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.partner-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.partner-logo {
  max-height: 30px;
  margin-bottom: 1rem;
}
.partner-logo2 {
  max-height: 40px;
  margin-bottom: 1rem;
}
/* --- IA SECTION --- */
.ia-importance {
  background-color: #ffcc00;
  padding: 4rem 1rem;
  text-align: left;
  color: #111111;
 
}
.ia-importance p {
  max-width: 600px;
}
/* --- REGARD AVENIR --- */
.mentors-section {
  background-color: #F5F5F5;
  padding: 4rem 0;
}

.mentors-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 2.5rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.mentors-box:hover {
  transform: translateY(-3px);
}

/* Texte à gauche */
.mentors-text {
  flex: 1;
}

.mentors-text h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.mentors-text p {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-link {
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
}

.btn-link:hover {
  text-decoration: underline;
}

/* Image à droite */
.mentors-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mentors-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .mentors-box {
    flex-direction: column;
    text-align: left;
  }

  .mentors-text,
  .mentors-image {
    flex: unset;
  }

  .mentors-image img {
    max-width: 100%;
  }
}
/* --- BUTTON --- */
.btn-inscrire {
  background-color: #111;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-inscrire:hover {
  background-color: #333;
}
/* Section Footer */
.footer-logo img {
  margin-bottom: 2rem;
  height: 25px ;
}
.site-footer {
  background-color: var(--black);
  color: var(--white);
  padding-top: 2rem;
}
.footer-top {
  padding: 2rem 2rem;
}
.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  flex-wrap: wrap;
  max-width: 1214px;
  margin: 0 auto;
}
.footer-left {
  max-width: 18.75rem;
}
.footer-left address {
  font-style: normal;
  line-height: 1.5;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 300;
  ;
}
.footer-nav a.active {
  color: var(--yellow);          
  text-decoration: none;          
  font-weight: 600;
}
.footer-bottom {
 
  background-color: var(--black);
}
.footer-bottom-content p {
  max-width: 1214px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  z-index: 200;

}

/* RESPONSIVE : Passe en 1 colonne sur mobile */
@media (max-width: 1024px) {
  .footer-nav ul {
     display: flex;
     flex-direction: column;
     gap: 1rem;
     font-size: 1 rem;
     
  }
  .footer-nav a {
    font-size: 1rem;
  }
  
}


/* ===========================
   Styles de la page de confirmation
=========================== */



.container2 {
  width: 80%;
  max-width: 800px;
  margin: 50px auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}




.cta-buttons {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: 2rem;
}

.cta-buttons a {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1vw;
  text-decoration: none;
  color: #000;
  background-color: #ffcc00;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.cta-buttons a:hover {
  background-color: #fdf5d7;
}
#btn-inscrire5,
.btn-inscrire5 {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  background: transparent;
  color: #F5F5F5;
  font-weight: 400;
  text-decoration: none;
  
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

#btn-inscrire5:hover,
.btn-inscrire5:hover {
  background: #555;
  color: #F5F5F5;
  transform: scale(1.05);
}

@media (max-width: 430px){
  .btn-inscrire5 {
    font-size: 14px;
    padding: 0.4rem 1.3rem;
  }
}

.intro-hero p {
  margin: auto;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* ===========================
   Styles de la page EQUIPE
=========================== */

.team-member img {
  border-radius: 0;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 3px solid #000;
  transition: 0.3s ease;
}
.intro-hero p {
  margin: auto;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 900px;
}


