/* Reset CSS léger */

/* Box-sizing universel */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Suppression du style par défaut de la liste */
ul, ol {
  list-style: none;
}

/* Suppression des décorations de liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Correction des titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Suppression de la mise en forme des boutons */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Assurer une meilleure lisibilité */
body {
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Images réactives */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Suppression des animations pour les utilisateurs qui préfèrent réduire les mouvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
