/* Pied de page personnalise */
footer {
    background-color: #222; /* fond sombre */
    color: #aaa; /* texte clair */
}

/* Style pour les liens dans le footer */
footer a {
    color: #d1b97c;
    transition: color 0.3s;
    font-size: 1.25rem;
}

/* Style des liens au survol*/
footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Style pour les images */
footer img {
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

/* Style des images au survol */
footer img:hover {
    transform: scale(1.1);
}

/* Style pour les elements texte */
footer span.text-muted {
    color: #d1b97c !important;
    font-size: 1.25rem;
}

/* Pour forcer 2 icônes par ligne sur mobile */
.social-icon {
    width: 50%; /* deux par ligne */
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* Style lien inactif */
footer .disabled-link {
    color: #9b9b9b;
    pointer-events: none;
    opacity: 0.6;
    text-decoration: none;
    cursor: default;
}