/* =========================================================
   BRAVO CRM — FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    margin-top: 60px;
    border-top: 1.5px solid var(--border);
    background: var(--surface);
    box-shadow: 0 -2px 12px rgba(15,23,42,.07), 0 -1px 3px rgba(15,23,42,.05);
}

.site-footer::before {
    display: none;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 28px;
    flex-wrap: wrap;
}

/* Brand block */
.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.site-footer__logo {
    height: 28px;
    width: auto;
    opacity: .85;
}

.site-footer__tagline {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: .03em;
}

/* Logo switching */
.site-logo--dark  { display: none !important; }
.site-logo--light { display: inline !important; }
:root.theme-dark .site-logo--light { display: none !important; }
:root.theme-dark .site-logo--dark  { display: inline !important; }

/* Nav links */
.site-footer__links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer__link {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    transition: color .18s ease;
}

.site-footer__link:hover {
    color: #0f172a;
}

/* Copyright */
.site-footer__copy {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .site-footer__links { gap: 16px; }
    .site-footer__copy  { align-self: flex-start; }
}


/* -------------------------------------------------------
   DARK THEME — FOOTER
-------------------------------------------------------- */

:root.theme-dark .site-footer {
    background: #161a1e;
    border-top-color: rgba(255,255,255,.05);
}

:root.theme-dark .site-footer::before {
    background: linear-gradient(90deg, #151515 0%, #fcd535 50%, #836d27 100%);
    background-size: 200% 100%;
    opacity: .7;
}

:root.theme-dark .site-footer__logo    { opacity: .7; }
:root.theme-dark .site-footer__tagline { color: var(--muted-2); }
:root.theme-dark .site-footer__link    { color: var(--muted); }
:root.theme-dark .site-footer__link:hover { color: var(--text); }
:root.theme-dark .site-footer__copy    { color: var(--muted-2); }

