/* Footer */
.custom-footer {
    background: linear-gradient(120deg, #3498db, #8e44ad) !important;
    color: white;
    padding: 40px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links ul, .footer-socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-links ul li a, .footer-socials ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-socials ul li a:hover {
    color: #ff8f68; /* Couleur d'accentuation au survol */
}

.footer-socials ul li a {
    font-size: 1.5rem; /* Taille des icônes sociales */
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3); /* Légère bordure blanche */
    padding-top: 10px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links ul, .footer-socials ul {
        justify-content: center;
    }
}
