/* ================================================================
   footer.css — Site footer
   Loaded by: templates/_footer.html.twig (via base.html.twig)
   ================================================================ */

.site-footer {
    background: #1A2E42;
    color: #fff;
    padding: 52px 0 0;
    margin-top: 72px;
}
.site-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}
.site-footer a:hover { color: #fff; }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 12px;
}
.footer-brand img { width: 26px; height: 26px; }
.footer-brand:hover { color: #E06882; }

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
    max-width: 240px;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.footer-bar-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}
.footer-bar-links {
    display: flex;
    gap: 16px;
}
.footer-bar-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}
.footer-bar-links a:hover { color: rgba(255,255,255,0.9); }
