
/* Styles pour les liens sociaux */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--blue);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-links i {
    color: #fff;
    margin: 0 auto;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--light-blue);
}

/* Footer */
footer {
    background-color: var(--dark-brown);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: var(--light-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: white;
    transition: var(--transition);
}

.footer-section-contact i {
    margin-right: 10px;
    color: var(--light-blue);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}