/**
 * FOOTER - FLUIDANSE
 * Styles spécifiques au footer du site
 */

/* === FOOTER === */
.footer-moderne {
    background: var(--fluidanse-gris);
    color: var(--fluidanse-beige);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--fluidanse-orange);
    margin-bottom: 1rem;
    font-family: var(--font-titre);
    font-size: 1.2rem;
}

.footer-section p, 
.footer-section a {
    color: var(--fluidanse-beige);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section a {
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--fluidanse-orange);
    text-decoration: underline;
}

.footer-section a[href*="planning"] {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--fluidanse-orange);
    color: var(--fluidanse-blanc);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-section a[href*="planning"]:hover {
    background: var(--fluidanse-rouge);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(184, 49, 47, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    color: var(--fluidanse-beige);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
} 