/* ── MAP SECTION ── */
#map {
    background: #ffffff;
    padding: 80px 0 96px;
}

.map__inner {
    max-width: 1224px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── HEADER ── */
.map__header {
    text-align: center;
    margin-bottom: 40px;
}
.map__subtitle {
    display: inline-block;
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #19352B;
    margin-bottom: 12px;
}
.map__title {
    font-family: 'Orelega One', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0;
    color: #19352B;
    margin: 0;
}

/* ── WIDGET (groene box) ── */
.map__widget {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    min-height: 520px;
}

/* ── LINKS (donkergroen + kaart) ── */
.map__left {
    background: #19352B;
    padding: 40px 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map__svg-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nl-map {
    width: 100%;
    max-width: 392px;
    height: auto;
}

/* Provincies standaard grijs */
.province {
    fill: #8a9e93;
    stroke: #19352B;
    stroke-width: 2;
    cursor: pointer;
    transition: fill .2s;
}
.province:hover,
.province.active {
    fill: #DBF178;
}

/* Hint onderaan */
.map__hint {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 10px;
    padding-top: 16px;
}
.map__hint span {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    color: #DDE4DE;
    line-height: 1.4;
}

/* ── RECHTS (middengroen + info) ── */
.map__right {
    background: #234B3E;
    position: relative;
    overflow: hidden;
    padding: 48px 40px;
    display: flex;
    align-items: flex-start;
}

/* Hert SVG op de achtergrond */
.map__deer {
    position: absolute;
    top: 60px;
    left: -91px;
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/fauna-bescherming/assets/deer.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    opacity: .4;
    pointer-events: none;
    z-index: 0;
}

.map__info {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Default hint tekst */
.map__info-hint {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: rgba(255,255,255,.5);
    font-style: italic;
    margin: 0;
}

/* ── PROVINCIE BLOK ── */
.map__provincie {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map__provincie-naam {
    font-family: 'Orelega One', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
}

.map__provincie-tekst {
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    color: rgba(255,255,255,.85);
    margin: 0;
}

/* Dieren rondjes */
.map__provincie-dieren {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.map__dier-cirkel {
    width: 103px;
    height: 103px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,.1);
}
.map__dier-cirkel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Link */
.map__provincie-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Special Gothic Condensed One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #DBF178;
    text-decoration: none;
    text-underline-offset: 3px;
    transition: opacity .15s;
}
.map__provincie-link-text{
    text-decoration: underline;
}
.map__provincie-link:hover {
    opacity: .75;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .map__widget {
        grid-template-columns: 1fr;
    }
    .map__left {
        padding: 32px 24px 20px;
    }
    .map__right {
        padding: 32px 24px;
        min-height: 360px;
    }
    .map__title {
        font-size: 36px;
        line-height: 44px;
    }
}
@media (max-width: 600px) {
    #map {
        padding: 48px 0 64px;
    }
    .map__title {
        font-size: 28px;
        line-height: 34px;
    }
    .map__dier-cirkel {
        width: 72px;
        height: 72px;
    }
}