/*
Theme Name: Bihotz
Theme URI: https://tonsite.com
Description: Thème enfant de Divi créé pour le projet Bihotz
Author: Vianney Aïn
Author URI: https://vianneyain.com
Template: Divi
Version: 1.0.0
Text Domain: bihotz
*/

/* --- Styles personnalisés ici --- */
@import url('css/fonts.css');

:root {
    --vert:#284A29;
    --beige:#846A40;
    --vert-clair:#A8C686;
    --beige-clair:#F4EBD0;
    --brun:#8B6B4A;
    --blanc:#FAF9F5;
    --noir:#231F20;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* Typographie */
body {
    font-family: var(--font-body);
    font-weight:normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 4em;
}

h3 {
    font-size: 2em;
}

h4 {
    font-size: 1.5em;
}

h5 {
    font-size: 1.25em;
}

h6 {
    font-size: 1em;
}

/* Responsive - Tablette */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 1.5em;
    }

    h4 {
        font-size: 1.25em;
    }

    h5 {
        font-size: 1.1em;
    }

    h6 {
        font-size: 0.9em;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 2em;
    }

    h3 {
        font-size: 1.25em;
    }

    h4 {
        font-size: 1.1em;
    }

    h5 {
        font-size: 1em;
    }

    h6 {
        font-size: 0.85em;
    }
}