/* Importation de la police globale */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Réinitialisation générale et typographie */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Sécurité contre le défilement horizontal */
html,
body {
    overflow-x: clip;
}

/* Classe de verrouillage du scroll (gérée par JS) */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
}

/*Pour centrer les popups du site*/
dialog {
    margin: auto;
}

@media screen and (max-width: 1200px) {

    .container,
    .wrapper {
        width: 95%;
        padding: 0 16px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }

    section,
    .main-section {
        padding: 40px 0;
    }
}