/* ============================================
   WebVerse — Footer
   File: footer.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

.wf-footer {
    background: #F7F5F2;
    font-family: 'DM Sans', sans-serif;
    border-top: 1px solid rgba(15, 14, 12, 0.08);
}

.wf-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 5% 2rem;
}

/* ── Top: brand ── */
.wf-footer__top {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(15, 14, 12, 0.08);
}

.wf-footer__logo {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f0e0c;
    /* dark ink */
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: 0.5rem;
}

.wf-footer__tagline {
    font-size: 0.82rem;
    color: rgba(15, 14, 12, 0.45);
    /* muted ink */
    margin: 0;
}

/* ── 4 col links grid ── */
.wf-footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(15, 14, 12, 0.08);
}

.wf-footer__col-title {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(15, 14, 12, 0.4);
    /* muted label */
    margin-bottom: 1.2rem;
}

.wf-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.wf-footer__list li a {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(15, 14, 12, 0.65);
    /* readable dark */
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.wf-footer__list li a:hover {
    color: #0f0e0c;
    /* full dark on hover */
    padding-left: 4px;
}

/* ── Social icons ── */
.wf-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.wf-social {
    width: 36px;
    height: 36px;
    background: rgba(15, 14, 12, 0.06);
    border: 1px solid rgba(15, 14, 12, 0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 14, 12, 0.55);
    text-decoration: none;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}

.wf-social:hover {
    background: #0f0e0c;
    border-color: #0f0e0c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Bottom copyright ── */
.wf-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: rgba(15, 14, 12, 0.35);
}

.wf-footer__bottom-right {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .wf-footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .wf-footer__container {
        padding: 3rem 4% 1.5rem;
    }

    .wf-footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .wf-footer__list li a {
        font-size: 0.82rem;
    }

    .wf-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}