/* =========================
   Base (Mobile First)
========================= */

.site-footer {
    background-color: #0E0101;
    color: #ffffff;
    min-width: 100% !important;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
}

/* Layout */
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px !important;
    width: fit-content;
    margin-left: 20px !important;
}

/* =========================
   Logo
========================= */

.footer-logo img {
    height: 80px;
    width: fit-content;
}

.footer-logo {
    width: fit-content;
}

/* =========================
   Kontakt
========================= */

.footer-contact {
    font-size: 18px;
}

.footer-title {
    font-weight: 800 !important;
    margin-bottom: 10px !important;
}

.footer-contact p {
    margin: 5px 0;
}

/* =========================
   Footer Menü
========================= */

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}

.footer-nav .footer-menu li a {
    color: #ffffff !important;
    font-size: 16px;
}

.footer-nav .footer-menu li a:hover {
    color: #d4af37 !important;
}

/* =========================
   Bottom Bereich
========================= */

.footer-bottom {
    margin-bottom: 30px;
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    padding: 0 20px;
}

/* =========================
   Tablet (ab 767px)
========================= */

@media (min-width: 767px) {
    .site-footer {
    padding: 0 !important;
    
}
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        /*align-items: flex-start;*/
        gap: 60px;
        padding: 60px 40px !important;
        margin: 0 !important;
    }

    .footer-nav {
        text-align: left;
    }

    .footer-menu li a {
    font-size: 18px !important;
}

    .footer-logo img {
    height: 120px;
}

.footer-bottom {
    padding: 0 40px;
    margin-inline: auto;
}
}

/* =========================
   Desktop (ab 1024px)
========================= */

@media (min-width: 1024px) {
    .site-footer {
        margin: 0 !important;
        align-items: center;
    }

    .site-footer, .site-footer:not(.dynamic-footer) {
        max-width: 100% !important;
    }

    .footer-inner,  body:not([class*=elementor-page-]) .site-main {
        max-width: 1400px !important;
        padding: 60px 40px !important;
        margin: 0 !important;
    }

    .footer-contact {
        font-size: 20px;
    }

    .footer-logo img {
        height: 140px;
    }

    .footer-bottom {
    padding: 0 0px;
}
}

/* =========================
   Breitbild (ab 1400 px)
========================= */

@media (min-width: 1400px) {
    .footer-inner,  body:not([class*=elementor-page-]) .site-main {
        margin: 0 auto !important;
        padding-inline: clamp(
            0px,
            calc((1480px - 100vw) * 0.5),
            40px
        ) !important;
    }
}