/* ==========================================================
   FOOTER — Meal on the Way
   Red background with cream text & column links
   ========================================================== */

.motw-footer {
    background: var(--motw-red, #C42127);
    color: var(--motw-cream, #FFF6E5);
    padding: 60px 20px 24px;
    font-family: var(--font-body, 'Instrument Sans', sans-serif);
}

.motw-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.motw-footer-brand img {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) saturate(100%) invert(97%) sepia(9%) saturate(500%) hue-rotate(320deg) brightness(103%);
}

.motw-footer-tagline {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    font-size: 0.95rem;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0 0 18px;
    max-width: 220px;
}

.motw-footer-socials {
    display: flex;
    gap: 10px;
}

.motw-footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 1rem;
}

.motw-footer-socials a:hover {
    background: var(--motw-orange, #F39C2D);
}

.motw-footer-col h5 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
    text-transform: uppercase;
    font-size: 0.95rem;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    color: #fff;
}

.motw-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.motw-footer-col li {
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.motw-footer-col a {
    color: var(--motw-cream, #FFF6E5);
    text-decoration: none;
    transition: color 0.2s ease;
    opacity: 0.9;
}

.motw-footer-col a:hover {
    color: var(--motw-orange, #F39C2D);
    opacity: 1;
}

.motw-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    opacity: 0.95;
}

.motw-footer-contact i {
    color: var(--motw-orange, #F39C2D);
    margin-top: 3px;
    flex-shrink: 0;
}

.motw-footer-divider {
    max-width: 1200px;
    margin: 40px auto 16px;
    height: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.motw-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Decorative tilted triangles at bottom (from design) */
.motw-footer-tris {
    max-width: 1200px;
    margin: 16px auto 0;
    height: 60px;
    background:
        linear-gradient(135deg, transparent 49.5%, var(--motw-red, #C42127) 49.5% 50.5%, transparent 50.5%) 0 0/120px 60px no-repeat,
        linear-gradient(45deg, transparent 49.5%, var(--motw-red, #C42127) 49.5% 50.5%, transparent 50.5%) 0 0/120px 60px no-repeat;
    display: none;
    /* optional decorative — hidden by default */
}

@media (max-width: 900px) {
    .motw-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .motw-footer {
        padding: 40px 18px 20px;
    }

    .motw-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.motw-footer-col h5 {
    font-family: var(--font-heading, 'Sailor', sans-serif);
}