/* Footer Styles - Site Vitrine */
footer {
    min-height: 180px;
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #020902;
}

footer .container {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: 0.2px solid #dcdcdc;
    width: 80%;
    align-items: center;
    max-width: 1200px;
}

footer .container a {
    text-decoration: none;
    font-size: 16px;
}

footer .container img {
    width: 60px;
    height: 60px;
}

footer .container .liens {
    width: 50%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

footer .container .liens a {
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}

footer .container .media {
    width: 20%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

footer .container .media a {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

footer .container .media a:hover {
    transform: translateY(-3px);
    background-color: #FCE003;
}

footer .container .media a svg {
    fill: #020902;
    width: 20px;
    height: 20px;
}

footer .copyrigther {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    margin: 15px 0;
    text-align: center;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 746px) {
    footer {
        height: auto;
        padding: 30px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    footer .container {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: auto;
        margin: auto;
        width: 90%;
        max-width: none;
    }

    footer .container .liens {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: auto;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        width: 100%;
    }

    footer .container .liens a {
        font-size: 16px;
        text-align: center;
        white-space: normal;
        line-height: 1.6;
    }

    footer .container .media {
        width: 100%;
        padding: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
    }
}

@media (max-width: 376px) {
    footer .container .media a {
        width: 25px;
        height: 25px;
    }

    footer .container .media a svg {
        width: 15px;
        height: 15px;
    }
}