/* --- Structure principale du Footer --- */
footer {
    background-color: #1a1a1a;     
    color: white;
    padding: 50px 50px 20px;
    margin-top: 60px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

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

/* --- Sections & Typographie --- */
.footer-section h3 {
    color: #e50914;               
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e50914;               
}

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

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

.footer-section ul li a {
    display: inline-block;
    transition: transform 0.2s ease, color 0.3s ease;
}

.footer-section ul li a:hover {
    transform: translateX(5px);
    color: #e50914;
}

/* --- Logos partenaires --- */
.footer-logos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* --- Bas de page (Copyright) --- */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9em;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* --- Responsive Footer --- */
@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1em;
    }
}
