/* =========================================================
   INSANE LABAN — SITE FOOTER

   Save as: Public/css/site-footer.css
========================================================= */

.site-footer {
    padding: 46px 32px 26px;

    background: #071426;
    border-top: 1px solid rgba(255, 255, 255, .08);

    color: rgba(255, 255, 255, .62);
    font-size: 13.5px;
    line-height: 1.7;
}


.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}


/* ---------------------------------------------------------
   BRAND
--------------------------------------------------------- */

.site-footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.site-footer-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 11px;
}

.site-footer-brand strong {
    display: block;

    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
}

.site-footer-brand span {
    display: block;
    margin-top: 2px;

    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    letter-spacing: .04em;
}


/* ---------------------------------------------------------
   LINKS
--------------------------------------------------------- */

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 22px;
}

.site-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, .68);
    text-decoration: none;
    font-size: 13.5px;

    transition: color .18s ease;
}

.site-footer-links a:hover {
    color: #e8bd68;
}

/* Marks the links that leave the page */

.site-footer-links a i {
    font-size: 9px;
    opacity: .5;
}


/* ---------------------------------------------------------
   ALLERGEN NOTICE
--------------------------------------------------------- */

/*
| Legally and practically the most important line down here,
| so it is not buried in a row of small print links.
*/

.site-footer-allergen {
    max-width: 1200px;
    margin: 30px auto 0;

    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 14px 17px;

    border: 1px solid rgba(232, 189, 104, .22);
    border-radius: 13px;
    background: rgba(232, 189, 104, .07);

    color: rgba(255, 255, 255, .72);
    font-size: 12.5px;
    line-height: 1.6;
}

.site-footer-allergen i {
    flex-shrink: 0;
    margin-top: 2px;

    color: #e8bd68;
    font-size: 13px;
}


/* ---------------------------------------------------------
   BASE
--------------------------------------------------------- */

.site-footer-base {
    max-width: 1200px;
    margin: 26px auto 0;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    color: rgba(255, 255, 255, .4);
    font-size: 12px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 760px) {

    .site-footer {
        padding: 34px 18px 22px;
    }

    .site-footer-inner {
        flex-direction: column;
        gap: 22px;
    }

    .site-footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
    }

    .site-footer-allergen {
        margin-top: 24px;
        padding: 13px 14px;
        font-size: 12px;
    }

}