/* Footer principal */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section supérieure (colonnes) */
.footer-top {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

/* Colonne */
.footer-column {
    flex: 1;
    min-width: 200px;
}

/* Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.1); /* Animation de zoom au survol */
}

/* Liens */
.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul li a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--hover-color);
}

/* Informations d'Informaclique */
.footer-column h3 {
    color: var(--accent-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li i {
    font-size: 1.2em;
    color: var(--highlight-color);
}

/* Réseaux sociaux */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social a {
    color: var(--white-color);
    font-size: 1.5em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--highlight-color);
    transform: scale(1.2);
}

/* Section inférieure */
.footer-bottom {
    text-align: center;
    font-size: 0.9em;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--hover-color);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Liens dans les informations d'Informaclique */
.footer-column ul li a {
    color: var(--white-color); /* Couleur du texte */
    text-decoration: none; /* Supprime le soulignement */
    font-size: 1em; /* Taille du texte */
    display: flex; /* Alignement horizontal de l'icône et du texte */
    align-items: center;
    gap: 10px; /* Espacement entre l'icône et le texte */
    transition: color 0.3s ease, transform 0.3s ease; /* Effet au survol */
}

.footer-column ul li a i {
    font-size: 1.2em; /* Taille de l'icône */
    color: var(--highlight-color); /* Couleur de l'icône */
    transition: color 0.3s ease;
}

/* Effet au survol */
.footer-column ul li a:hover {
    color: var(--accent-color); /* Couleur du texte au survol */
    transform: translateX(5px); /* Léger mouvement vers la droite */
}

.footer-column ul li a:hover i {
    color: var(--accent-color); /* Couleur de l'icône au survol */
}
