.custom-footer {
    background-color: var(--color-3);
    color: #ffffff; /* Couleur blanche pour le texte */
    padding: 40px 20px;
}

.custom-footer-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.custom-logo {
    text-align: center;
}

.custom-logo h2 {
    font-size: 2em;
    color: #d4af37;
    margin-bottom: 10px;
}

.custom-logo img {
    height: 10rem;
}

.custom-links-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.custom-column {
    flex: 1 1 25%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.custom-column h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: gold;
    position: relative;
}

.custom-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #d4af37;
}

.social-links, .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1px; /* Espacement entre les éléments de liste */
}

.social-link, .contact-link {
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1px;
}

.social-link:hover, .contact-link:hover {
    color: #d4af37;
}

.social-link i, .contact-link i {
    width: 20px;
    text-align: center;
}

@media (min-width: 769px) {
    .custom-footer-container {
        flex-direction: row;
    }

    .custom-logo-section {
        margin: 20px;
        flex: 1;
    }

    .custom-links-section {
        flex: 2;
    }

    .custom-column {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .custom-links-section {
        flex-direction: column;
    }

    .custom-column {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-bottom: 20px;
    }

    .social-links, .contact-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .custom-logo h2 {
        font-size: 1.5em;
    }

    .custom-column h3 {
        font-size: 1em;
    }

    .social-link, .contact-link {
        font-size: 0.9em;
    }
}