/* =========================================================
   DOZOLME CUSTOM — base volontairement minimale
   ========================================================= */

:root {
    --color-primary: #04391F;
    --color-background: #F6F5F4;
    --color-white: #FFFFFF;

    --font-title: Montserrat, Arial, sans-serif;
    --font-body: Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-background);
    color: #111;
    font-family: var(--font-body);
    line-height: 1.6;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}

/* Aucun container, padding, largeur max ou style de section n'est imposé.
   Ajoute ici uniquement ce que tu veux réellement voir sur le site. */
