/* ==========================================
   FOOTER - HARMONISÉ AVEC VOTRE SITE
   ========================================== */

   .footer {
    background: #000;
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Effet de séparation élégant avant le footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(26, 188, 156, 0.3) 20%, 
        rgba(26, 188, 156, 0.6) 50%, 
        rgba(26, 188, 156, 0.3) 80%, 
        transparent 100%
    );
}

/* Grille du footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

/* Sections du footer */
.footer-section {
    position: relative;
}

/* Titres des sections - Roboto Slab */
.footer-section h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1abc9c;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Petite ligne sous les titres */
.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    border-radius: 1px;
}

/* Paragraphes - Crimson Text */
.footer-section p {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Strong dans les paragraphes */
.footer-section p strong {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Listes de liens */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

/* Petite puce devant chaque lien */
.footer-links li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #1abc9c;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

/* Liens du footer */
.footer-links a {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #1abc9c;
    text-decoration: none;
    padding-left: 5px;
}

.footer-links li:hover::before {
    color: #52c9b0;
    transform: translateX(3px);
}

/* Liens email et web spéciaux */
.footer-section a[href^="mailto:"],
.footer-section a[href^="http"] {
    font-family: 'Crimson Text', serif;
    color: #1abc9c;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.footer-section a[href^="mailto:"]:hover,
.footer-section a[href^="http"]:hover {
    color: #52c9b0;
    border-bottom-color: #52c9b0;
}

/* Liens sociaux */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(26, 188, 156, 0.1);
    border: 2px solid rgba(26, 188, 156, 0.3);
    border-radius: 50%;
    color: #1abc9c;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(26, 188, 156, 0.2);
    border-color: #1abc9c;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(26, 188, 156, 0.3);
    color: #52c9b0;
    text-decoration: none;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(26, 188, 156, 0.2);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

/* Liens légaux */
.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1abc9c;
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: #1abc9c;
    text-decoration: none;
}

.footer-legal a:hover::after {
    width: 100%;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0 0;
        margin-top: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0 0;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ==========================================
   EFFET PARALLAX SUBTIL (DESKTOP)
   ========================================== */

@media (min-width: 769px) {
    .footer {
        background-image: 
            radial-gradient(circle at 20% 20%, rgba(26, 188, 156, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(26, 188, 156, 0.02) 0%, transparent 50%);
    }
}