/* Footer vert moderne, épuré et responsive */
.footer-bar {
    background: linear-gradient(120deg, #43A047 0%, #388E3C 100%);
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
    width: 100%;
    box-shadow: 0 2px 16px 0 rgba(56,142,60,0.10);
    backdrop-filter: blur(2px);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(56,142,60,0.10);
}

.footer-slogan {
    color: #c8e6c9;
    font-size: 1rem;
    opacity: 0.85;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-bottom: 6px;
}

.footer-nav a {
    color: #e8f5e9;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s, background 0.2s;
    border-radius: 4px;
    padding: 2px 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-nav a:hover {
    color: #66bb6a;
    background: rgba(255,255,255,0.08);
}

.footer-copy {
    text-align: center;
    color: #c8e6c9;
    font-size: 0.95rem;
    margin-top: 8px;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

@media (max-width: 700px) {
    .footer-inner {
        padding: 0 8px;
    }
    .footer-brand {
        flex-direction: column;
        gap: 4px;
    }
    .footer-nav {
        gap: 10px;
    }
} 