/* ============================================================
   Liberty World Ministries — Branding and Shared Footer
   /css/branding.css
   Loads after navbar.css.
============================================================ */

/* ── Navbar logo ─────────────────────────────────────────── */
.lwm-navbar-brand {
    min-width: 0;
}

.lwm-nav-logo {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex: 0 0 42px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.24));
}

.lwm-navbar-brand span {
    line-height: 1.1;
}

/* ── Footer ──────────────────────────────────────────────── */
.lwm-site-footer {
    margin-top: 0;
    color: #fff;
    background:
        radial-gradient(circle at 12% 10%, rgba(201,168,76,0.15), transparent 26%),
        linear-gradient(135deg, var(--cobalt-950) 0%, var(--cobalt-800) 58%, var(--indigo-800) 100%);
    border-top: 4px solid var(--gold-500);
}

.lwm-footer-brand,
.lwm-footer-brand:link,
.lwm-footer-brand:visited {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
}

.lwm-footer-logo {
    display: block;
    width: 86px;
    height: 86px;
    object-fit: contain;
    flex: 0 0 86px;
    filter: drop-shadow(0 7px 18px rgba(0,0,0,0.28));
}

.lwm-footer-brand strong,
.lwm-footer-brand small {
    display: block;
}

.lwm-footer-brand strong {
    color: var(--gold-400);
    font-family: var(--lwm-font-serif);
    font-size: 1.25rem;
    line-height: 1.15;
}

.lwm-footer-brand small {
    margin-top: 0.35rem;
    color: var(--cobalt-100);
    font-size: 0.78rem;
    line-height: 1.45;
}

.lwm-footer-about {
    max-width: 540px;
    margin: 1.2rem 0 1rem;
    color: var(--cobalt-100);
    font-size: 0.9rem;
    line-height: 1.7;
}

.lwm-footer-heading {
    margin: 0 0 1rem;
    color: var(--gold-400);
    font-family: var(--lwm-font-serif);
    font-size: 1rem;
    font-weight: 700;
}

.lwm-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lwm-footer-links li + li {
    margin-top: 0.45rem;
}

.lwm-footer-links a,
.lwm-footer-contact-line a,
.lwm-footer-legal a {
    color: var(--cobalt-100);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lwm-footer-links a:hover,
.lwm-footer-links a:focus-visible,
.lwm-footer-contact-line a:hover,
.lwm-footer-contact-line a:focus-visible,
.lwm-footer-legal a:hover,
.lwm-footer-legal a:focus-visible {
    color: var(--gold-400);
}

.lwm-footer-links a {
    font-size: 0.88rem;
}

.lwm-footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
    color: var(--cobalt-100);
    font-size: 0.88rem;
    line-height: 1.5;
}

.lwm-footer-contact-line i {
    width: 18px;
    margin-top: 0.18rem;
    color: var(--gold-400);
    text-align: center;
}

.lwm-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.1rem;
}

.lwm-footer-rule {
    margin: 2rem 0 1.2rem;
    border-color: rgba(255,255,255,0.18);
}

.lwm-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--cobalt-200);
    font-size: 0.82rem;
}

.lwm-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 767.98px) {
    .lwm-nav-logo {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .lwm-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .lwm-footer-brand {
        align-items: flex-start;
    }

    .lwm-footer-logo {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .lwm-footer-actions .btn {
        width: 100%;
    }
}
