/* Styles pour le footer du site */
.site-footer {
    background-color: #42200b; /* Un marron foncé qui s'accorde avec le thème */
    color: #f8f9fa;
    padding: 40px 20px;
    font-size: 0.9rem;
}

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

.footer-section h4 {
    color: #FF8C00; /* Couleur orange pour les titres, rappelant le thème */
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a,
.footer-section p a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
    color: #FF8C00; /* Changement de couleur au survol */
}

.footer-socials {
    margin-top: 15px;
}

.footer-socials a {
    color: #f8f9fa;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #FF8C00;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #5a3a2a; /* Ligne de séparation subtile */
    font-size: 0.8rem;
    color: #ccc;
}

/* Responsive pour les petits écrans */
@media (max-width: 768px) {
    .footer-container {
        text-align: center;
    }
}