/* Styles pour le footer */
footer {
    background-color: #222;
    color: #eee;
    padding: 40px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 2px solid #555;
    padding-bottom: 5px;
}

.footer-section p {
    line-height: 1.6;
}

/* Style pour la section "À Propos" */
.about .social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.2em;
    color: #ccc;
    transition: color 0.3s ease;
}

.about .social-icons a:hover {
    color: #eee;
}

/* Style pour la section "Liens Utiles" */
.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    margin-bottom: 8px;
}

.links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links ul li a:hover {
    color: #eee;
}

/* Style pour la section "Contactez-Nous" */
.contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact i {
    margin-right: 10px;
    color: #aaa;
}

/* Style pour la section "Newsletter" */
.newsletter form {
    display: flex;
}

.newsletter input[type="email"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #555;
    background-color: #333;
    color: #eee;
    border-radius: 5px 0 0 5px;
}

.newsletter button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Style pour la partie inférieure du footer */
.footer-bottom {
    background-color: #111;
    color: #aaa;
    padding: 15px 0;
    text-align: center;
    font-size: 0.9em;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #eee;
    text-decoration: underline;
}

/* Pour les icônes Font Awesome */
.fab, .fas {
    margin-right: 5px;
}