/* Import d'une police Ã©lÃ©gante (remplacez-la par une police de votre choix) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Déclaration de la police Neuropol Custom */
@font-face {
    font-family: 'Neuropol Custom';
    src: url('https://assets.team-réality.com/assets/fonts/neuropol/Neuropol X Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --light-grey: #f0f0f0;
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
    overflow-x: hidden;
    /* Styles ajoutés pour le footer en bas de page */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


h1,
h2,
h3 {
    font-weight: 400;
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width : 0px) {
    .histoire_wrapper {
        padding: 80px 20px;
        background-color: #fff;
    }


    .histoire_container {
        max-width: 1000px;
        margin: 0 auto;
    }


    .histoire_container h1 {
        font-family: 'Neuropol Custom', sans-serif;
        font-size: 3rem;
        margin-bottom: 30px;
    }


    .histoire_container h2 {
        margin-top: 40px;
        margin-bottom: 15px;
        font-size: 1.6rem;
    }


    .histoire_container p {
        font-size: 1.05rem;
        color: #444;
    }


    .histoire_container .intro {
        font-size: 1.2rem;
        font-weight: 500;
    }
}