footer {
    background: #0096D7;
    color: white;
    text-align: center;
    padding: 10px 15px; 
    font-size: 14px;
    width: 100%;
    margin-top: auto;
}

.footer-logo img {
    width: 80px;
    background: white; 
    padding: 5px;
    border-radius: 5px; 
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.footer-social a img {
    width: 28px; 
    transition: transform 0.3s ease-in-out;
}

.footer-social a:hover img {
    transform: scale(1.1);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-links a, .footer-legal a, .footer-tva a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover, .footer-legal a:hover, .footer-tva a:hover {
    color: #FFD700;
}
/* Réseaux sociaux */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social a img {
    width: 30px;
    transition: transform 0.3s ease-in-out;
}

.footer-social a:hover img {
    transform: scale(1.2);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.close-popup {
    float: right;
    font-size: 25px;
    cursor: pointer;
    color: #000;;
}

@media (max-width: 768px) {
    .popup-content {
        width: 80%;
    }

    .footer-container {
        text-align: center;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-logo img {
        width: 70px; 
    }

    footer {
        padding: 15px;
    }
}
