/* Styles pour le footer */
.footer {
    background-color: var(--color-white); /* Fond blanc pour le footer */
    padding: 20px;
    text-align: center;
    color: var(--color-green);
    border: 2px solid var(--color-green); /* Bordure verte arrondie pour le footer */
    border-radius: 10px; /* Coins arrondis */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Ombre douce */
    margin: 30px auto;
    max-width: 600px; /* Largeur du footer */
    width: 90%; /* Pour un bon centrage sur tous les écrans */
    box-sizing: border-box; /* Évite le débordement dû aux bordures */
}

/* Conteneur principal du footer */
.footer-content {
    display: flex;
    flex-direction: column; /* Empile les lignes */
    align-items: center; /* Centre horizontalement */
    justify-content: center;
    gap: 15px; /* Espacement harmonieux entre les lignes */
    width: 100%;
    margin: 0 auto;
}

/* Ligne téléphone + mail et ligne réseaux */
.contact-line, .social-line {
    display: flex;
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* S’adapte aux petits écrans */
    width: 100%;
    margin: 0 auto;
}

/* Style des cartes de contact */
.contact-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white); /* Fond blanc */
    padding: 10px 15px;
    border: 2px solid var(--color-green); /* Bordure verte */
    border-radius: 8px; /* Coins arrondis */
    font-size: 0.9em;
    color: var(--color-green);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre douce */
}

/* Icônes téléphone/mail */
.contact-icon {
    width: 35px;
    height: 35px;
}

/* Icônes réseaux sociaux */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1); /* Zoom au survol */
}

/* Texte copyright */
.footer p {
    margin: 0;
}

.footer-copyright {
    font-size: 1em;
    font-weight: bold;
    font-style: italic;
    color: var(--color-green);
    background-color: var(--color-white);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .footer {
        padding: 15px;
        max-width: 95%;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .contact-line, .social-line {
        gap: 15px;
    }
}
