/* ═══════════════════════════════════════════════════════════════════
   RESET.CSS — Réinitialisation des styles par défaut du navigateur
   ═══════════════════════════════════════════════════════════════════ */

   /* Force Source Sans 3 partout */
* {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif !important;
}

body, p, span, div, a, button, input, textarea, select {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif !important;
}
   /* Fin de Force Source Sans 3 partout */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}
