/* --- FOOTER CYAN NEON PREMIUM (OPTICAL BALANCE TRUE FIX) --- */

footer {
    padding: 60px 0 40px;
    background: #000;
    border-top: 1px solid #00e5ff33;
    position: relative;
}

/* Ligne lumineuse */
footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #00e5ff;
    box-shadow: 0 0 12px #00e5ff;
    opacity: .35;
}

/* CYAN — réduit */
footer .brand {
    color: #00e5ff;
    font-weight: 900;
    letter-spacing: 7px;
    font-size: 1.1rem;
    text-shadow: 0 0 6px rgba(0,229,255,0.5);
    margin-bottom: 10px;
}

/* Copyright — NE S’APPLIQUE PLUS AU TEXTE PRESS */
footer .footer-center p {
    color: #444;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    opacity: .7;
    transition: .3s ease;
}

/* Legal Mentions */
footer a.legal {
    color: #004a66;
    text-decoration: underline;
    font-size: 0.65rem;
    letter-spacing: 1px;
    opacity: 0.6;
    display: inline-block;
    margin-top: 2px;
    transition: .3s ease;
}

footer a.legal:hover {
    opacity: 1;
    color: #006b8f;
}

/* Logo */
footer img.footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    animation: footerBlink 3.5s infinite ease-in-out;
}

@keyframes footerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* --- LAYOUT 3 COLONNES --- */

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

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    text-align: center;
}

.footer-left { text-align: left; }
.footer-right { text-align: right; padding-right: 20px; }

footer .press-text {
    color: #0094ff;
    font-size: 0.62rem;
    opacity: 0.95;
    margin-bottom: 20px; /* Espace augmenté pour le mobile */
    letter-spacing: 1.2px;
    font-weight: 500;
    text-transform: none;
    display: block; /* Important pour que la marge s'applique */
}

/* Bouton CONTACT */
.footer-contact-btn {
    padding: 10px 22px;
    border: 1px solid #0094ff;
    color: #0094ff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: 0.3s ease;
    text-shadow: 0 0 6px rgba(0,148,255,0.6);
    box-shadow: 0 0 12px rgba(0,148,255,0.4);
    animation: neonPulseStrong 2.5s ease-in-out infinite;
}

/* Hover */
.footer-contact-btn:hover {
    background: #0094ff;
    color: #000;
    box-shadow:
        0 0 40px rgba(0,148,255,1),
        inset 0 0 16px rgba(255,255,255,0.7);
}

/* --- RESPONSIVE --- */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        margin-bottom: 10px;
    }
}


