/* --- FOOTER--- */
.site-footer {
    background: linear-gradient(135deg, #1A2A42, #0f1a29);
    color: white;
    padding: 2rem 1rem 0 1rem;
    font-size: 0.95rem;
    margin-top: auto;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
}

/* Alignements par colonne */
.footer-about {
    text-align: left;
    flex: 1;
}

.footer-links {
    text-align: center;
    flex: 1;
}

.footer-legal {
    text-align: center;
    flex: 1;
}

.footer-contact {
    text-align: right;
    flex: 1;
}

/* Titres */
.footer-container h3, 
.footer-container h4 {
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Liens */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #F18536;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff9f5c;
    text-shadow: 0 0 5px rgba(241, 133, 54, 0.6);
}

/* Legal */
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-legal a {
    color: #F18536;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ff9f5c;
    text-shadow: 0 0 5px rgba(241, 133, 54, 0.6);
}


/* Partie basse */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 0;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* -----MEDIA----- */
/* ---FOOTER--- */
/* --- Responsive --- */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 1.5rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-about, .footer-links, .footer-contact {
        text-align: center;
        flex: unset;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}