/* ========================================
   FOOTER EXTENDED — FooterExtended.razor
   Antologa Design System Compliant
   Used by: Explore, Blog, Shop, Pricing, Support, About
   ======================================== */

/* ── Wrapper ────────────────────────────── */
.fex-footer {
    background-color: #ffffff;
    border-top: 1px solid var(--antologa-light-gray);
    padding: 4rem 0 0 0;
    width: 100%;
}

.fex-footer--dark {
    background-color: var(--antologa-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fex-inner {
    padding-bottom: 0 !important;
}

/* ── Brand column (logo + tagline + social) ── */
.fex-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 2rem;
}

.fex-logo {
    width: 9rem;
    height: auto;
    display: block;
}

.fex-tagline {
    font-family: Nunito, sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--antologa-gray);
    max-width: 22rem;
}

.fex-footer--dark .fex-tagline {
    color: rgba(255, 255, 255, 0.55);
}

.fex-social-row {
    display: flex;
    flex-direction: row;
    gap: 0.15rem;
    margin-top: 0.25rem;
}

/* ── Link columns ─────────────────────── */
.fex-link-col {
    display: flex;
    flex-direction: column;
}

.fex-col-heading {
    font-family: Inter, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--antologa-dark);
    margin-bottom: 1rem;
}

.fex-footer--dark .fex-col-heading {
    color: rgba(255, 255, 255, 0.90);
}

.fex-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* ── Individual links ──────────────────── */
.fex-link {
    font-family: Nunito, sans-serif;
    font-size: 0.88rem;
    color: var(--antologa-gray) !important;
    text-decoration: none !important;
    transition: color 0.18s ease;
    cursor: pointer;
    display: inline-block;
}

    .fex-link:hover {
        color: var(--antologa-primary) !important;
        text-decoration: none !important;
    }

.fex-footer--dark .fex-link {
    color: rgba(255, 255, 255, 0.52) !important;
}

    .fex-footer--dark .fex-link:hover {
        color: rgba(255, 255, 255, 0.90) !important;
    }

/* ── Divider + bottom row ──────────────── */
.fex-divider {
    margin-top: 3rem !important;
    border-color: var(--antologa-light-gray) !important;
}

.fex-footer--dark .fex-divider {
    border-color: rgba(255, 255, 255, 0.10) !important;
}

.fex-bottom-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1.25rem 0;
}

.fex-copyright {
    font-family: Nunito, sans-serif;
    font-size: 0.8rem;
    color: var(--antologa-gray);
}

.fex-footer--dark .fex-copyright {
    color: rgba(255, 255, 255, 0.40);
}

.fex-bottom-tagline {
    font-family: Nunito, sans-serif;
    font-size: 0.8rem;
    color: var(--antologa-light-gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.fex-footer--dark .fex-bottom-tagline {
    color: rgba(255, 255, 255, 0.20);
}

/* ── Social icon overrides ─────────────── */
.fex-social-btn {
    /* inherits .footer-icon sizing/colors from footer.css */
    margin: 0 !important;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 959px) {
    .fex-brand-col {
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .fex-logo {
        width: 8rem;
    }
}

@media (max-width: 600px) {
    .fex-footer {
        padding-top: 3rem;
    }

    .fex-brand-col {
        margin-bottom: 0.5rem;
    }

    .fex-col-heading {
        font-size: 0.76rem;
    }

    .fex-link {
        font-size: 0.84rem;
    }

    .fex-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 1rem 0;
    }

    .fex-bottom-tagline {
        display: none;
    }
}
