:root{
    
    
    --text-color: #FFF;



}
footer {
    background-color: var(--nav-color);
    text-align: center;
    width: 100%;
    color: var(--text-color);
    margin:auto;
    
}
footer.dark {
    --nav-color: #242526;
    --text-color: #CCC;
    
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    padding: 0 20px; /* Ajoute un peu d'espace sur les côtés */
     margin:auto;
}

.footer-section {
    flex: 1;
    margin: 20px;
    min-width: 250px;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

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

.footer-section ul li {
    margin: 8px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section p {
    margin: 10px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #FFD700; /* Effet doré au survol */
}

/* Bandeau du bas */
.footer-bottom {
    background: #073B80;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    width: 100%;
}
