/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:#ffffff;
    color:#111827;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
    background:white;
    position:fixed;
    width:100%;
    top:0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    z-index:1000;
}

.logo{
    font-size:42px npx;
    font-weight:800;
    color:#D4AF37;
    magin-right:60px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#111827;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{

    color:#D4AF37;

}
/* SECTION NOS CHIFFRES */
.stats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

/* Centre la ligne orange en dessous ou à côté correctement */
.stats-divider {
  width: 50px;
  height: 4px;
  background-color: #d4af37; /* ou la couleur orange exacte */
  margin: 10px auto;
}

.stats-logo-container {
  margin-bottom: 15px;
}

.stats-logo {
  width: 80px;
  height: auto;
  display: block;
}
/* HERO */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:0 20px;

    background:linear-gradient(180deg,#ffffff,#f8f8f8);

}

.hero-content{

    max-width:900px;

}

.hero h1{

    font-size:52px;

    font-weight:800;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    color:#555;

    line-height:1.8;

}

.btn-cta{

    display:inline-block;

    margin-top:45px;

    padding:18px 45px;

    background:#0F172A;

    color:white;

    text-decoration:none;

    border-radius:12px;

    font-size:20px;

    font-weight:700;

    transition:.3s;

}

.btn-cta:hover{

    background:#1E3A8A;

    transform:translateY(-5px);

}

/* GALERIE */

.gallery-section{

    padding:100px 8%;

}

.gallery-section h2{

    text-align:center;

    font-size:45px;

    margin-bottom:15px;

}

.subtitle{

    text-align:center;

    color:#666;

    margin-bottom:60px;

}

.grid-illustrations{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

}

.card-image-placeholder{

    height:230px;

    background:linear-gradient(135deg,#D4AF37,#F4E2A0);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

    font-weight:700;

}

.card-info{

    padding:25px;

}

.card-info h3{

    margin-bottom:12px;

}

.card-info p{

    color:#666;

    line-height:1.6;

}

/* FOOTER */

footer{

    background:#0F172A;

    color:white;

    text-align:center;

    padding:40px;

    margin-top:100px;

}
@media (max-width:768px){

.nav-links li:nth-child(4){
    display:none;
}

.nav-links{
    gap:18px;
}

}
/* --- À AJOUTER DIRECTEMENT EN DESSOUS DE .nav-links { gap:18px; } --- */

  /* Styles du bouton burger (les 3 barres) à mettre HORS de la media query, juste avant elle si possible, ou au-dessus */
  .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 25px;
      height: 20px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
  }
  .menu-toggle .bar {
      height: 3px;
      width: 100%;
      background-color: #0F172A; /* Reprend le bleu foncé de votre footer */
      border-radius: 10px;
      transition: all 0.3s ease;
  }

/* --- À AJOUTER À L'INTÉRIEUR DE VOTRE @media (max-width:768px) ACTUELLE --- */
  .menu-toggle {
      display: flex; /* On affiche le burger sur mobile */
  }

  .nav-links {
      display: none; /* Remplace le comportement par défaut pour masquer le menu */
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 5px 10px rgba(0,0,0,0.05);
      padding: 20px 0;
      z-index: 100;
  }

  .nav-links li {
      text-align: center;
      margin: 15px 0;
  }

  .nav-links.active {
      display: flex; /* S'affiche quand on clique sur le burger */
    }
