/* Styles généraux du pied de page */
footer {
    background-color: black;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9em;
}

/* Conteneur principal des sections du pied de page */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}

/* Styles pour chaque section du pied de page */
.footer-section {
    margin-bottom: 20px;
    min-width: 200px;
    flex: 1; /* Permet aux sections de prendre l'espace disponible */
}

/* Titres des sections */
.footer-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-family: 'Courier New', Courier, monospace;
}

/* Listes de liens */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 5px;
}

/* Liens dans le pied de page */
.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease; /* Effet de transition pour le survol */
    font-family: 'Courier New', Courier, monospace;
}

.footer-section a:hover {
    color: #007bff; /* Couleur au survol, vous pouvez la changer */
}

/* Icônes sociales */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    font-size: 1.5em;
    transition: transform 0.3s ease; /* Effet de transition pour le survol */
    font-family: 'Courier New', Courier, monospace;
}

.social-icons a:hover {
    transform: translateY(-3px); /* Petit déplacement vers le haut au survol */
}

/* Paragraphe de la newsletter */
.footer-section p {
    margin-top: 20px;
    font-family: 'Courier New', Courier, monospace;
}

/* Formulaire de newsletter */
.footer-section form {
    margin-top: 10px;
}

.footer-section input[type="email"] {
    padding: 8px;
    border-radius: 5px;
    border: none;
    width: calc(100% - 80px); /* Ajuste la largeur de l'input */
    margin-right: 5px;
}

.footer-section button[type="submit"] {
    background-color: #007bff; /* Couleur du bouton d'inscription, à adapter */
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-section button[type="submit"]:hover {
    background-color: #0056b3; /* Couleur au survol du bouton */
}

/* Section copyright */
.copyright {
    border-top: 1px solid #555; /* Ligne de séparation */
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.85em;
}

/* Media Queries pour la responsivité */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Les sections s'empilent sur les petits écrans */
        align-items: center; /* Centrer les éléments */
    }
    .footer-section {
        text-align: center; /* Centrer le texte dans les sections */
        width: 100%; /* Chaque section prend toute la largeur */
    }
}