/* Footer commun à toutes les pages */
footer {
    text-align: center;
    color: white;
    margin-top: 40px;
    padding: 0;
    background: transparent;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px 12px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.footer-separator {
    opacity: 0.4;
    font-size: 1.1em;
}

.footer-tagline {
    font-size: 0.9em;
    opacity: 0.8;
    color: white;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.footer-copy {
    font-size: 0.8em;
    opacity: 0.6;
    color: white;
}

.footer-copy .app-version {
    opacity: 0.8;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 12px 12px 0 0;
        gap: 10px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }
}
