:root {
    --rouge: rgb(208, 2, 27);
    --noir: rgb(0, 0, 0);
    --blanc: rgb(255, 255, 255);
    --jaune: rgb(248, 231, 28);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 26px;
    color: var(--noir);
    background-color: var(--blanc);
}

.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Titres de section */
h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 70px;
    text-align: left;
    color: var(--noir);
    margin-top: 80px;
    margin-bottom: 60px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

h1 {
    text-align: center;
    font-size: 60px;
    line-height: 65px;
    margin: 13px 0;
}

/* Rouge pour mots-clés */
.rouge {
    color: var(--rouge);
}

.gras {
    font-weight: 700;
}

/* Textes courants */
p {
    font-size: 26px;
    line-height: 36px;
    text-align: left;
    color: var(--noir);
    margin: 45px 0;
}

/* Images */
.hero-image {
    width: 780px;
    max-width: 100%;
    border-radius: 20px;
    display: block;
    margin: 40px auto 0 auto;
}

.section-image {
    width: 600px;
    max-width: 100%;
    border-radius: 20px;
    display: block;
    margin: 0 auto 70px auto;
}

.mt-25 {
    margin-top: 25px;
}

/* Listes */
ul {
    margin: 16px 0;
    padding-left: 25px;
}

li {
    margin-bottom: 16px;
    line-height: 27px;
    margin-left:50px;    
}

/* Bouton CTA */
.btn-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--jaune);
    color: var(--noir);
    font-family: 'Montserrat', sans-serif;
    font-size: 37px;
    font-weight: 400;
    line-height: 25px;
    padding: 15px 100px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 0 25px rgba(0,0,0,0.4), 0 0 15px rgba(255,255,255,0.2), 0 0 3px rgba(255,255,255,0.4);
    text-decoration: none;
    cursor: pointer;
    margin: 80px auto;
    transition: transform 0.3s;
}

.btn-cta:hover {
    transform: scale(1.20);
}

.btn-cta .sous-texte {
    font-size: 20px;
    color: var(--noir);
    margin-top: 6px;
    line-height: 23px;
}

/* Footer */
footer {
    text-align: center;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Section spécifique "Une magie qui se vit de très près" */
.section-intro h2 {
    margin-top: 50px;
    margin-bottom: 60px;
}

.section-intro p {
    font-size: 26px;
    line-height: 34px;
}

/* MOBILE */
@media (max-width: 800px) {
    .content-wrapper {
        padding: 0 20px;
    }

    h1 {
        font-size: 42px;
        line-height: 60px;
        margin: 13px 30px;
        padding: 0 10px;
    }

    h2 {
        font-size: 40px;
        line-height: 45px;
        margin-top: 50px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    p, li {
        font-size: 22px;
        line-height: 29px;
    }

    .section-intro h2 {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .section-intro p {
        font-size: 22px;
        line-height: 29px;
    }

    /* Images mobile */
    .hero-image,
    .section-image {
        width: calc(100% - 30px);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        height: auto;
        border-radius: 20px;
    }

    .section-image {
        margin: 30px auto;
    }

    /* Listes mobile */
    ul {
        padding-left: 20px;
    }

    li {
        margin-bottom: 12px;
    }

    /* Bouton mobile */
    .btn-cta {
        width: calc(100% - 40px);
        padding: 5px;
        font-size: 24px;
        line-height: 22px;
        box-shadow: none;
        border-radius: 30px;
        margin: 50px 20px;
    }

    .btn-cta:hover {
        transform: none;
    }

    .btn-cta .sous-texte {
        font-size: 14px;
    }

    footer {
        font-size: 16px;
    }
}


/* Par défaut (desktop) */
.mobile-only {
    display: none;
}

.desktop-only {
    display: inline;
}

/* Mobile */
@media (max-width: 800px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
