/* ==========================================================================
   STRUCTURE COMPOSANT FOOTER (LOGIQUE GRAPHIQUE FLOEMA)
   ========================================================================== */
.main-footer {
    width: 100%;
    background-color: var(--menu-bg); /* Capsule blanche épurée */
    border-top: 1px solid rgba(18, 18, 18, 0.06);
    padding: 35px 50px;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Colonne Gauche : Logo */
.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    display: block;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.2, 1);
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
}

/* Colonne Milieu : Liens Légaux & Protection */
.footer-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.footer-copyright {
    color: var(--text-dark);
    opacity: 0.25;
    font-size: 0.68rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Colonne Droite : Icônes Réseaux Sociaux */
.footer-right-socials {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 18px;
}

.social-icon {
    color: var(--text-dark);
    opacity: 0.4;
    font-size: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.2, 1), opacity 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: transparent;
}

.social-icon:hover {
    opacity: 1;
    color: #ffffff;
    background-color: var(--text-dark);
    transform: translateY(-3px);
}

/* Adaptation Responsive Mobiles & Tablettes */
@media (max-width: 768px) {
    .main-footer {
        padding: 40px 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-left, .footer-center, .footer-right-socials {
        justify-content: center;
        flex: none;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 12px;
    }
}