/* mon-site/styles_footer.css */
.footer {
    background-color: #1F286BFF;
    color: #FFFFFF;
    padding: 40px 0;
    position: relative;
    width: 100%;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center; /* Centre verticalement les éléments */
}

.footer-section {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre les éléments à l'intérieur de chaque section */
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-logo .logo-footer {
    max-height: 60px; /* Taille du logo sans effet "gras" */
    width: auto;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center; /* Centre les icônes horizontalement */
}

.footer-social a {
    color: #FFFFFF;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #CCCCCC;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end; /* Boutons alignés à droite */
}

.footer-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFFFFF;
    color: #1F286BFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.footer-btn:hover {
    background-color: #CCCCCC;
    color: #1F286BFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    font-size: 12px;
    color: #E0E0E0;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-buttons {
        align-items: center; /* Centre les boutons sur mobile */
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 20px 0;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-social a {
        font-size: 18px;
    }

    .footer-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

    .footer-bottom {
        font-size: 10px;
    }
}