/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    overflow: hidden;

    color: #dce5f0;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(213, 170, 69, .08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--color-blue-deep),
            #081b31
        );

    border-top: 1px solid rgba(213, 170, 69, .24);
}


/* =========================================================
   ACCENT BOVENZIJDE
   ========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--color-gold),
            var(--color-red-orange),
            var(--color-gold)
        );
}


/* =========================================================
   GRID
   ========================================================= */

.footer__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(170px, .7fr)
        minmax(220px, .9fr);

    gap: 4rem;

    padding-top: 4rem;
    padding-bottom: 4rem;
}


/* =========================================================
   BRAND
   ========================================================= */

.footer__brand {
    max-width: 440px;
}

.footer__logo {
    display: inline-flex;
    align-items: center;

    gap: .9rem;

    margin-bottom: 1.25rem;

    color: var(--color-white);

    text-decoration: none;
}

.footer__logo-image {
    width: 82px;
    height: 68px;

    display: block;

    flex-shrink: 0;

    object-fit: cover;
    object-position: center;

    border-radius: 12px;

    border: 1px solid rgba(213, 170, 69, .24);

    box-shadow:
        0 6px 18px rgba(0, 0, 0, .24);
}

.footer__logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.footer__logo-text strong {
    color: var(--color-white);

    font-size: 1.05rem;
    font-weight: 800;
}

.footer__logo-text small {
    margin-top: .3rem;

    color: var(--color-muted);

    font-size: .75rem;
}

.footer__brand > p {
    max-width: 390px;

    margin: 0;

    color: #aebdce;

    line-height: 1.75;
}


/* =========================================================
   KOLOMMEN
   ========================================================= */

.footer__column h3 {
    position: relative;

    margin: 0 0 1.4rem;

    padding-bottom: .7rem;

    color: var(--color-white);

    font-size: .95rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer__column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--color-gold),
            var(--color-red-orange)
        );
}


/* =========================================================
   LINKS
   ========================================================= */

.footer__links {
    display: flex;

    flex-direction: column;

    gap: .75rem;
}

.footer__links a {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: .6rem;

    color: #b8c5d4;

    text-decoration: none;

    font-size: .9rem;
    font-weight: 600;

    transition:
        color .18s ease,
        transform .18s ease;
}

.footer__links a:hover {
    color: var(--color-gold-light);

    transform: translateX(3px);
}


/* =========================================================
   TEAM BADGES
   ========================================================= */

.footer__team-badge {
    min-width: 38px;
    height: 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 .45rem;

    color: var(--color-white);

    background: rgba(255, 255, 255, .07);

    border: 1px solid rgba(213, 170, 69, .25);

    border-radius: 999px;

    font-size: .65rem;
    font-weight: 900;
}


/* =========================================================
   ONDERSTE BALK
   ========================================================= */

.footer__bottom {
    border-top:
        1px solid rgba(255, 255, 255, .07);

    background:
        rgba(0, 0, 0, .12);
}

.footer__bottom-inner {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;
}

.footer__bottom p {
    margin: 0;

    color: #8495a9;

    font-size: .8rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .footer__grid {
        grid-template-columns:
            1.4fr
            1fr;

        gap: 3rem;
    }

    .footer__brand {
        grid-column: 1 / -1;

        max-width: 550px;
    }
}


/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 600px) {

    .footer__grid {
        grid-template-columns: 1fr;

        gap: 2.5rem;

        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer__logo-image {
        width: 72px;
        height: 60px;

        border-radius: 10px;
    }

    .footer__bottom-inner {
        min-height: auto;

        padding-top: 1.25rem;
        padding-bottom: 1.25rem;

        flex-direction: column;
        align-items: flex-start;

        gap: .35rem;
    }
}


/* =========================================================
   KLEINE MOBIELE SCHERMEN
   ========================================================= */

@media (max-width: 420px) {

    .footer__logo {
        align-items: flex-start;
    }

    .footer__logo-image {
        width: 64px;
        height: 54px;
    }

    .footer__logo-text strong {
        font-size: .98rem;
    }

    .footer__logo-text small {
        font-size: .7rem;
    }
}