
* {
    padding: 0;
    margin: 0;
    transition: var(--transition-1);
    color: var(--font-black);
}

*::selection {
    background: var(--beige);
    color: var(--font-white);
}

/* Dire au navigateur d'utiliser le jeu de couleurs "light" par défaut */
html {
    color-scheme: light; /* indique au UA qu'on veut la palette light par défaut */
    -webkit-print-color-adjust: exact;
    color-adjust: exact;           /* préserve les couleurs sur certains UAs */
    forced-color-adjust: none;     /* tente d'empêcher les forced colors (haut-contraste) */
}

body {
    /* background-color: #a1a1a1; */
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
    max-width: 100vw;
    overflow-x: hidden;
}

a {
    color: var(--font-black-a); /* Une couleur contrastée mais pas criarde */
    text-decoration: none; /* On retire le soulignement */
    cursor: pointer;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    opacity: .8;
    text-decoration: underline; /* Facultatif : montrer le lien au hover */
}

button {
    background-color: initial;
    border: none;
    cursor: pointer;
}

h2 {
    font-size: var(--fs-32);
    margin-bottom: .825rem;
    font-weight: 600;
}
h3 {
    font-size: var(--fs-24);
    margin-bottom: 1rem;
    font-weight: 600;
}

img {
    line-height: 0;
}

svg {
    stroke-width: 2;
    stroke: var(--black);
}

ul {
    list-style-type: none; /* supprime les 'dots' avant les listes */
}

/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins/poppins-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/poppins/poppins-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/poppins/poppins-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* pinyon-script-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Pinyon Script';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/pinyon/pinyon-latin-regular.woff2') format('woff2');
}


.laptop, .tablet, .mobile {
    display: none;
}

@media screen and (min-width: 1024px) {
    .laptop {
        display: block;
    }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .tablet {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .mobile {
        display: block;
    }
}