/* =======================================================
   🎯  RESET DE BASE
   ======================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

/* =======================================================
   🌐  STYLES GÉNÉRAUX
   ======================================================= */
html, body {
  overflow-x: hidden;
  width: 100%;
  }
  

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0e0e0e;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Titres */
h1, h2, h3 {
  font-weight: bold;
  font-family: Poppins;
  color: #FFF;
}

h1 {
  font-size: 44px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}


/* Paragraphes */
p {
  font-size: 18px;
  font-weight: 400;
}

/* Liens et boutons */
a,
button {
  cursor: pointer;
  transition: 0.3s ease;
}

/* Sections générales */
section {
  padding: 60px 5% 20px;
}

/* gestions du défillements */
section:target::before {
  content: "";
  display: block;
  height: 160px; /* même hauteur que ton header */
  margin-top: -100px;
}


/* Texte uniquement visible pour les lecteurs d'écran */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =======================================================
   📱  RESPONSIVE — Global padding mobile
   ======================================================= */
   @media (max-width: 768px) {
    body {
      padding: 0; /* ✅ pas de marge latérale */
    }
  
    header,
    #hero-section {
      padding-left: 0;
      padding-right: 0;
    }
  
    .container-header {
      padding: 0 12px; /* petit espace intérieur pour ne pas coller */
    }
  
    #hero-section > div {
      padding-left: 12px;
      padding-right: 12px;
    }
  }
  