/**
 * Jung Leben – Footer
 */


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    color: #ffffff;
    background: #163d32;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.05
        );
}


/* =========================================================
   HAUPTBEREICH
   ========================================================= */

.site-footer__main {
    display: grid;

    grid-template-columns:
        minmax(280px, 1.45fr)
        repeat(
            3,
            minmax(150px, 0.7fr)
        );

    gap:
        clamp(
            45px,
            6vw,
            90px
        );

    padding-top: 75px;
    padding-bottom: 68px;
}


/* =========================================================
   BRAND
   ========================================================= */

.site-footer__brand {
    max-width: 390px;
}

.site-footer__logo-link {
    display: inline-block;
}

.site-footer__logo {
    display: block;

    width: 150px;
    height: auto;

    filter:
        brightness(0)
        invert(1);

    opacity: 0.96;
}

.site-footer__description {
    max-width: 360px;

    margin:
        28px
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.63
        );

    font-size: 0.88rem;

    line-height: 1.7;
}

.site-footer__email {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-top: 25px;

    padding-bottom: 4px;

    color: #d5e8aa;

    border-bottom:
        1px solid
        rgba(
            213,
            232,
            170,
            0.28
        );

    font-size: 0.82rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        gap 180ms ease,
        border-color 180ms ease;
}

.site-footer__email:hover {
    gap: 16px;

    border-color: #d5e8aa;
}


/* =========================================================
   SPALTEN
   ========================================================= */

.site-footer__heading {
    margin:
        4px
        0
        23px;

    color:
        rgba(
            255,
            255,
            255,
            0.45
        );

    font-size: 0.67rem;
    font-weight: 750;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.site-footer__links {
    margin: 0;
    padding: 0;

    list-style: none;
}

.site-footer__links li {
    margin:
        0
        0
        13px;
}

.site-footer__links li:last-child {
    margin-bottom: 0;
}

.site-footer__links a {
    color:
        rgba(
            255,
            255,
            255,
            0.78
        );

    font-size: 0.86rem;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 180ms ease,
        padding-left 180ms ease;
}

.site-footer__links a:hover {
    color: #ffffff;

    padding-left: 3px;
}


/* =========================================================
   KONTAKT
   ========================================================= */

.site-footer__column-text {
    max-width: 210px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    font-size: 0.84rem;

    line-height: 1.65;
}

.site-footer__contact-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: #d5e8aa;

    font-size: 0.8rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        gap 180ms ease;
}

.site-footer__contact-link:hover {
    gap: 15px;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 22px;
    padding-bottom: 24px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );
}

.site-footer__bottom p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.38
        );

    font-size: 0.69rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .site-footer__main {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            55px
            50px;
    }

    .site-footer__brand {
        max-width: 430px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 620px) {

    .site-footer__main {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 58px;
        padding-bottom: 48px;
    }

    .site-footer__logo {
        width: 135px;
    }

    .site-footer__description {
        margin-top: 22px;
    }

    .site-footer__heading {
        margin-bottom: 17px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 7px;

        padding-top: 20px;
        padding-bottom: 22px;
    }
}