/* ==========================================
   BAPSANG FOOTER — Light & Modern
========================================== */

.bh-footer {
    --bh-footer-bg: #faf7f2;
    --bh-footer-charcoal: #1a1714;
    --bh-footer-body: #5c5650;
    --bh-footer-muted: #9a9590;
    --bh-footer-ember: #b66d33;
    --bh-footer-brass: #c4a265;
    --bh-footer-border: rgba(26, 23, 20, 0.06);
}

/* ==========================================
   GOOGLE MAPS STRIP
========================================== */
.bh-footer__map-strip {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.bh-footer__map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bh-footer-bg) 0%, transparent 8%, transparent 92%, var(--bh-footer-bg) 100%);
    pointer-events: none;
    z-index: 2;
}

.bh-footer__map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(0.3) contrast(1.05) brightness(1.05);
    transition: filter 0.6s ease;
}

.bh-footer__map-strip:hover .bh-footer__map-iframe {
    filter: saturate(0.8) contrast(1) brightness(1);
}

.bh-footer__map-cta {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: var(--bh-footer-ember);
    padding: 14px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(232, 74, 28, 0.25);
}

.bh-footer__map-cta:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 74, 28, 0.35);
}

.bh-footer__map-cta svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   MAIN FOOTER
========================================== */
.bh-footer__main {
    background: var(--bh-footer-bg);
    padding: 80px 0 64px;
    position: relative;
    overflow: hidden;
}

.bh-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Top accent line */
.bh-footer__accent {
    height: 2px;
    background: linear-gradient(90deg, var(--bh-footer-ember), var(--bh-footer-brass), transparent);
    margin-bottom: 64px;
    opacity: 0.2;
}

/* ---- Grid ---- */
.bh-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.9fr 1fr;
    gap: 56px;
}

/* ---- Column ---- */
.bh-footer__column--service {
    padding-right: 24px;
}

/* ---- Logo ---- */
.bh-footer__logo {
    display: inline-block;
    margin-bottom: 28px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.bh-footer__logo:hover {
    opacity: 0.7;
}

.bh-footer__logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.bh-footer__logo-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--bh-footer-charcoal);
}

/* ---- Titles ---- */
.bh-footer__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bh-footer-ember);
    margin: 0 0 24px;
}

/* ---- Text ---- */
.bh-footer__text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: var(--bh-footer-body);
    margin: 0 0 28px;
}

/* ---- Social Links ---- */
.bh-footer__social {
    display: flex;
    gap: 10px;
}

.bh-footer__social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bh-footer-border);
    border-radius: 50%;
    color: var(--bh-footer-muted);
    text-decoration: none;
    transition: all 0.4s ease;
    background: #ffffff;
}

.bh-footer__social-link:hover {
    border-color: var(--bh-footer-ember);
    color: #ffffff;
    background: var(--bh-footer-ember);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(232, 74, 28, 0.2);
}

.bh-footer__social-link svg {
    width: 18px;
    height: 18px;
}

/* ---- Contact (Address) ---- */
.bh-footer__address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bh-footer__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--bh-footer-border);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--bh-footer-charcoal);
}

.bh-footer__contact-row:first-child {
    padding-top: 0;
}

.bh-footer__contact-row:last-child {
    border-bottom: none;
}

.bh-footer__contact-icon {
    width: 16px;
    height: 16px;
    color: var(--bh-footer-ember);
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
}

.bh-footer__contact-row a {
    color: var(--bh-footer-charcoal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bh-footer__contact-row a:hover {
    color: var(--bh-footer-ember);
}

/* ---- Links List ---- */
.bh-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bh-footer__list-item {
    border-bottom: 1px solid var(--bh-footer-border);
}

.bh-footer__list-item:last-child {
    border-bottom: none;
}

.bh-footer__link {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--bh-footer-body);
    text-decoration: none;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.bh-footer__link:hover {
    color: var(--bh-footer-ember);
    padding-left: 8px;
}

/* ---- Openingstijden ---- */
.bh-footer__hours {
    margin-bottom: 24px;
}

.bh-footer__hours:last-of-type {
    margin-bottom: 0;
}

.bh-footer__hours-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--bh-footer-charcoal);
    margin: 0 0 10px;
}

.bh-footer__hours-list {
    margin: 0;
    padding: 0;
}

.bh-footer__hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--bh-footer-muted);
    border-bottom: 1px solid var(--bh-footer-border);
}

.bh-footer__hours-row:last-child {
    border-bottom: none;
}

.bh-footer__hours-row dt {
    font-weight: 500;
    color: var(--bh-footer-body);
}

.bh-footer__hours-row dd {
    margin: 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

/* ==========================================
   BOTTOM BAR
========================================== */
.bh-footer__bottom {
    background: var(--bh-footer-charcoal);
    padding: 22px 0;
}

.bh-footer__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bh-footer__copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(245, 240, 235, 0.4);
    margin: 0;
    text-align: center;
}

.bh-footer__copyright a {
    color: rgba(245, 240, 235, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bh-footer__copyright a:hover {
    color: var(--bh-footer-ember);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
    .bh-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .bh-footer__column--service {
        grid-column: 1 / -1;
        padding-right: 0;
        max-width: 560px;
    }

    .bh-footer__main {
        padding: 64px 0 48px;
    }

    .bh-footer__map-strip {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .bh-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bh-footer__column--service {
        max-width: none;
    }

    .bh-footer__inner {
        padding: 0 24px;
    }

    .bh-footer__main {
        padding: 48px 0 40px;
    }

    .bh-footer__accent {
        margin-bottom: 40px;
    }

    .bh-footer__copyright {
        font-size: 11px;
        line-height: 1.6;
    }

    .bh-footer__map-strip {
        height: 180px;
    }

    .bh-footer__map-cta {
        font-size: 10px;
        padding: 12px 24px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .bh-footer__inner {
        padding: 0 16px;
    }

    .bh-footer__map-strip {
        height: 140px;
    }

    .bh-footer__map-cta {
        padding: 10px 20px;
        font-size: 10px;
    }

    .bh-footer__social-link {
        width: 36px;
        height: 36px;
    }

    .bh-footer__grid {
        gap: 32px;
    }
}
