/* =========================================================
   PAGE MENTIONS LÉGALES – WORDPRESS SAFE
   Scoped avec .funky-mentions-page
========================================================= */

/* Reset local */
.funky-mentions-page,
.funky-mentions-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================================
   PAGE WRAPPER
========================================================= */
.funky-mentions-page {
    font-family: 'Lato', sans-serif;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.mentions-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.mentions-content {
    background-color: #ffffff;
    padding: 60px 50px;
    line-height: 1.8;
    color: #333333;
}

/* =========================================================
   TITRE PRINCIPAL (Fredoka One)
========================================================= */
.mentions-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    color: #8C144E;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* =========================================================
   INTRODUCTION
========================================================= */
.mentions-intro {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #333333;
    line-height: 1.8;
}

/* =========================================================
   SECTIONS
========================================================= */
.mentions-section {
    margin-bottom: 50px;
}

.mentions-section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    color: #8C144E;
    margin-bottom: 20px;
    margin-top: 40px;
}

.mentions-section:first-of-type .mentions-section-title {
    margin-top: 0;
}

.mentions-subsection-title {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* =========================================================
   TEXTE (Lato)
========================================================= */
.mentions-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* =========================================================
   LISTES (Lato)
========================================================= */
.mentions-list {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333333;
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mentions-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

/* =========================================================
   CONTACT
========================================================= */
.mentions-contact {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8C144E;
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border-left: 4px solid #8C144E;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 768px) {
    .mentions-content {
        padding: 40px 30px;
    }

    .mentions-title {
        font-size: 2rem;
    }

    .mentions-section-title {
        font-size: 1.5rem;
    }

    .mentions-list {
        margin-left: 20px;
    }
}

@media (max-width: 480px) {
    .funky-mentions-page {
        padding: 20px 15px;
    }

    .mentions-content {
        padding: 30px 20px;
    }

    .mentions-title {
        font-size: 1.75rem;
    }

    .mentions-section-title {
        font-size: 1.3rem;
    }

    .mentions-intro,
    .mentions-text,
    .mentions-list {
        font-size: 0.95rem;
    }
}


