/**
 * ==================================================
 * FOOTER
 * ==================================================
 * Theme: Aicher Teeladen
 *
 * Footer styles.
 *
 * This file contains the complete styling for the
 * website footer, including:
 *
 * - Footer Section
 * - Footer Container
 * - Footer Content
 * - Footer Columns
 * - Footer Bottom
 * ==================================================
 */
/* ==========================================================
   Footer Section
========================================================== */

.footer-section {
    background: var(--wp--preset--color--background);
    color: var(--wp--preset--color--text);

    padding: 5rem 2rem 2.5rem;

    border-top: 1px solid rgba(255,255,255,.08);
}

/* ==========================================================
   Footer Container
========================================================== */

.footer-container {
    width: 100%;
    max-width: var(--wp--style--global--wide-size);

    margin: 0 auto;
}

/* ==========================================================
   Footer Content
========================================================== */

.footer-content {
    margin-bottom: 4rem;
}

/* ==========================================================
   Footer Columns
========================================================== */

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 4rem;
}

/* ==========================================================
   Footer Bottom
========================================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 2rem;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================
   Footer Brand
========================================================== */

.footer-brand .wp-block-site-logo {
    margin-bottom: 2rem;
}

.footer-brand .wp-block-site-logo img {
    display: block;
    width: 195px;
    height: auto;
}

.footer-kicker {
    margin: 0 0 1rem;

    font-family: var(--wp--preset--font-family--inter);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: #8C9D68;
}

/* ==========================================================
   Footer Text
========================================================== */

.footer-text {
    margin: 0;

    font-family: var(--wp--preset--font-family--body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;

    color: var(--wp--preset--color--text);
}

/* ==========================================================
   Footer Navigation
========================================================== */

.footer-heading {
    margin: 0 0 1.5rem;

    font-family: var(--wp--preset--font-family--inter);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    color: var(--wp--preset--color--accent);
}

.footer-navigation .wp-block-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 0.5rem;
}

.footer-navigation .wp-block-navigation-item__content {
    color: var(--wp--preset--color--text);
    text-decoration: none;

    font-family: var(--wp--preset--font-family--body);
    font-size: 1rem;
    font-weight: 400;

    transition: color .25s ease;
}

.footer-navigation .wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--accent);
}

/* ==========================================================
   Footer Contact
========================================================== */

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;

    margin: 0 0 .5rem;

    font-family: var(--wp--preset--font-family--body);
    font-size: 1rem;
    line-height: 1.8;

    color: var(--wp--preset--color--text);
}

.footer-contact-item::before {
    content: "";

    display: inline-block;

    width: 18px;
    height: 18px;

    flex-shrink: 0;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.footer-contact-item.mail::before {
    background-image: url("../svg/mail-green.svg");
}

.footer-contact-item.phone:before {
    background-image: url("../svg/phone-green.svg");
}

.footer-contact-item.clock:before {
    background-image: url("../svg/clock-green.svg");
}

/* ==========================================================
   Footer Bottom
========================================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 2rem;

    padding-top: 2rem;
    padding-bottom: 2rem;

    border-top: 1px solid rgba(140, 157, 104, 0.20);
    background-color: rgba(0, 0, 0, 0.03);
}

.footer-copyright {
    margin: 0;

    font-size: .9rem;
    color: var(--wp--preset--color--text-muted);
}

.footer-legal .wp-block-navigation {
    gap: 1.5rem;
}

.footer-legal .wp-block-navigation-item__content {
    font-size: .9rem;
    color: var(--wp--preset--color--text-muted);
    text-decoration: none;

    transition: color .25s ease;
}
.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: var(--wp--style--global--wide-size);
    margin: 0 auto;
}

.footer-legal .wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--accent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* ==========================================================
   Footer Legal
========================================================== */

.footer-legal {
    margin: 0;

    font-family: var(--wp--preset--font-family--body);
    font-size: .9rem;
    font-weight: 400;

    color: var(--wp--preset--color--text-muted);

    text-align: right;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;

    transition: color .25s ease;
}

.footer-legal a:hover {
    color: var(--wp--preset--color--accent);
}
@media (max-width: 480px) {

 /* Footer Bottom */
    .footer-bottom-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
    }
}