/* ===== PIED DE PAGE - MENTIONS LÉGALES ===== */
/* Utilise les couleurs et styles du CSS commun du site */

/* ===== STYLES DU FOOTER ===== */
.footer {
    background:  #333;
    color: #ecf0f1;
    padding: 3rem 0 1rem 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    margin-top: 0px;
}

/* Barre colorée animée en haut du footer - couleurs du site */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffcc33, #ffd700, #ffcc33);
    background-size: 300% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

/* Container principal */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Grille du contenu */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* ===== SECTIONS DU FOOTER ===== */
.footer-section h3 {
    color: #ffcc33;  /* Couleur principale du site */
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ffcc33, #ffd700);
    border-radius: 1px;
}

.footer-section p, .footer-section li {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding-left: 1rem;
    position: relative;
}

.footer-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ffcc33;
    font-weight: bold;
}

/* ===== SECTION CONTACT ===== */
.contact-info {
    background: rgba(52, 73, 94, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffcc33;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-item::before {
    content: '📧';
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.contact-item:nth-child(2)::before { content: '📞'; }
.contact-item:nth-child(3)::before { content: '📍'; }
.contact-item:nth-child(4)::before { content: '🌐'; }


/* ===== BAS DU FOOTER ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 204, 51, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== ANIMATIONS ===== */
.footer-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem 0;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}



