
/* -------------------------------------------------------- */
/* reset.css – PRO SAFE VERSION (OPTIONNEL)                 */
/* -------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* base page */
html, body {
  width: 100%;
  height: 100%;

  /* stabilité scroll + UX */
  scroll-behavior: smooth;

  /* évite glitch horizontal */
  overflow-x: hidden;

  /* meilleure lisibilité texte */
  line-height: 1.4;

  /* anti aliasing léger */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* images / médias */
img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* boutons propres */
button {
  font: inherit;
}

/* liens propres */
a {
  color: inherit;
  text-decoration: none;
}
