/*
Theme Name: Mesmerize Child
Template: mesmerize
Author: Ton Nom
Version: 1.0
*/

@import url("../mesmerize/style.css"); /* utile si tu veux importer tout le CSS du parent */

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        text-align: center;
        margin: 10px 0;
    }

    .footer-right {
        align-items: center;
        order: 2; /* passe sous le logo */
    }

    .footer-center {
        margin-top: 20px; /* espace au lieu du -120px */
        order: 3;
    }

    .footer-logo img {
        max-width: 80px;
        margin-bottom: 50px;
    }

    .footer-container,
    .footer-center {
        width: 100%;
    }
}



.footer {
    background-color: #ad7fc1;
    color: #e0b1e2;
    padding: 30px;
    font-family: Verdana;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-left, .footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left > a:hover,
.footer-right > a:hover {
    color: #ad05f2;
}

.footer-left {
    text-align: left;
}

.footer-left a,
.footer-right a {
    color: #e0b1e2;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-center {
    width: 100%;
    text-align: center;
    margin-top: 110px;
}

.footer-logo img {
    max-width: 130px;
    height: auto;
}

.footer-copyright {
    font-size: 18px;
}

