/* =========================================================
   Billardshop: app-lokaler responsiver Footer
   ========================================================= */

.billardshop-footer-fragment {
    width: 100%;
    margin-top: auto;
}

.billardshop-footer {
    width: 100%;
    margin-top: clamp(28px, 5vw, 64px);
    background: #101713;
    color: #cbd3cc;
    border-top: 3px solid #15943b;
}

.billardshop-footer-inner {
    padding-top: clamp(28px, 4vw, 48px);
    padding-bottom: 18px;
}

.billardshop-footer-sections {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 28px 36px;
}

.billardshop-footer-section {
    flex: 1 1 210px;
    min-width: 0;
}

.billardshop-footer-section h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.3;
}

.billardshop-footer-section nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.billardshop-footer-section a,
.billardshop-footer-bottom a {
    color: #cbd3cc;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.billardshop-footer-section a {
    font-size: 13px;
    line-height: 1.45;
}

.billardshop-footer-section a:hover,
.billardshop-footer-section a:focus-visible,
.billardshop-footer-bottom a:hover,
.billardshop-footer-bottom a:focus-visible {
    color: #55d474;
    text-decoration: underline;
}

.billardshop-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 24px;
    margin-top: 30px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #8f9b91;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .billardshop-footer {
        margin-top: 32px;
    }

    .billardshop-footer-inner {
        padding-top: 28px;
    }

    .billardshop-footer-sections {
        gap: 24px;
    }

    .billardshop-footer-section {
        flex-basis: calc(50% - 12px);
    }

    .billardshop-footer-bottom {
        justify-content: center;
        margin-top: 24px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .billardshop-footer-section {
        flex-basis: 100%;
    }

    .billardshop-footer-section h2 {
        margin-bottom: 8px;
    }
}
