/* ========== POLICES ET RESET ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
}

/* ========== NAVIGATION ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FE5555;
    padding: 15px 20px;
    position: relative;
    z-index: 100;
}

.navbar .logo img {
    max-width: 90px;
    height: auto;
}

.navbar a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background 0.3s ease, transform 0.2s;
    font-size: 1.1rem;
}

.navbar a:hover {
    background-color: #FE8888;
    transform: scale(1.05);
    border-radius: 5px;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: white;
    margin-left: auto;
}

/* ========== SECTION MENTIONS LEGALES ========== */
.mentions-legales {
    padding: 60px 30px;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mentions-legales h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    text-align: center;
    color: #FE5555;
    margin-bottom: 30px;
}

.mentions-legales h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #FE5555;
    border-left: 5px solid #FE8888;
    padding-left: 10px;
}

.mentions-legales h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #FE8888;
}

.mentions-legales p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: justify;
}

.mentions-legales ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.mentions-legales ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.mentions-legales a {
    color: #FE5555;
    text-decoration: none;
    font-weight: 600;
}

.mentions-legales a:hover {
    text-decoration: underline;
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    background: #222;
    color: white;
    padding: 25px 20px;
    margin-top: 50px;
}

footer .socials {
    margin: 15px 0;
}

footer .socials a img {
    width: 32px;
    height: 32px;
    margin: 0 10px;
    transition: transform 0.3s;
    object-fit: contain;
}

footer .socials a:hover img {
    transform: scale(1.2);
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

    .menu {
        flex-direction: column;
        position: absolute;
        top: -100vh;
        left: 0;
        width: 100%;
        background-color: #FE8888;
        text-align: center;
        transition: top 0.4s ease-in-out;
        z-index: 99;
    }

    .menu a {
        padding: 15px;
        display: block;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .menu-active {
        top: 100%;
    }

    .mentions-legales {
        padding: 30px 20px;
        margin: 20px;
    }

    .mentions-legales h1 {
        font-size: 2.2rem;
    }

    .mentions-legales h2 {
        font-size: 1.6rem;
    }

    .mentions-legales h3 {
        font-size: 1.3rem;
    }

    .mentions-legales p,
    .mentions-legales ul li {
        font-size: 0.95rem;
    }
}
