/* reset.css - neutralise les styles par défaut du navigateur */

/* Box sizing global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body de base */
html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  line-height: 1.4;
  background: #fff;
  color: #000;
}

/* Éléments de texte */
h1, h2, h3, h4, h5, h6, p, blockquote, pre {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* Listes */
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Liens */
a {
  text-decoration: none;
  color: inherit;
}

/* Images et médias */
img, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Formulaires */
input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  box-sizing: border-box;
}

/* Buttons */
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Sections et div */
section, article, aside, nav, main, header, footer {
  display: block;
}

/* Overflow et scroll */
body {
  overflow-x: hidden; /* empêche le scroll horizontal involontaire */
}
