/* ============================================================
   Anglo Aunty's Kitchen — Footer Styles
   /assets/css/footer.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lato:wght@400;700&display=swap');

/* ── Variables ── */
:root {
    --footer-bg:        #B31220;
    --footer-bottom-bg: #B31220;
    --footer-text:      #ffffff;
    --footer-link:      #ffffff;
    --footer-link-hover:#ffe0e0;
    --footer-heading-font: 'Oswald', sans-serif;
    --footer-body-font:    'Lato', sans-serif;
}

/* ============================================================
   FOOTER BASE
   ============================================================ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    font-family: var(--footer-body-font);
    width: 100%;
}

/* ── Inner Grid ── */
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 52px 0px 40px;
}

/* ============================================================
   BRAND COLUMN
   ============================================================ */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-wholesale {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.5;
}

.footer-wholesale-sub {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-wholesale-sub a {
    color: var(--footer-link);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-wholesale-sub a:hover {
    color: var(--footer-link-hover);
}

.footer-suggest {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-suggest strong {
    font-weight: 700;
}

/* Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 32px;
}

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact strong {
    font-weight: 700;
}

.footer-contact a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}

.footer-contact a:hover {
    color: var(--footer-link-hover);
    opacity: 0.85;
}

/* ── Social Icons ── */
.footer-social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 4px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    transition: background 0.25s, transform 0.2s, color 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-3px);
}

/* YouTube play triangle — make it white */
.footer-social a[aria-label="YouTube"] svg polygon {
    fill: #ffffff;
}

/* ============================================================
   LINK COLUMNS
   ============================================================ */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--footer-heading-font);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--footer-text);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--footer-link);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--footer-link-hover);
    padding-left: 4px;
}

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.footer-bottom {
    background: var(--footer-bottom-bg);
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 16px 40px;
    text-align: left;
}

.footer-bottom p {
    font-family: var(--footer-heading-font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    max-width: 1300px;
    margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 2 column layout */
@media (max-width: 960px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px 32px;
        padding: 44px 32px 36px;
    }

    /* Brand spans full width on tablet */
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile — single column */
@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 20px 28px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-bottom {
        padding: 14px 20px;
        text-align: center;
    }

    .footer-social {
        gap: 14px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }
}