/* app.css */
@font-face {
    font-family: "Flexible";
    src: url("/assets/fonts/flexible-h300w200-webfont.woff2") format("woff2"),
        url("/assets/fonts/flexible-h300w200-webfont.woff") format("woff"),
        url("/assets/fonts/flexible-h300w200.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi";
    src: url("/assets/fonts/Satoshi-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

body {
    background-image: url("/assets/media/fotos/1.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    font-family: "Satoshi", sans-serif;
}

header.header {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header .logo img {
    height: 70px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    background-color: #006847;
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

.equal-height-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 3rem 2rem;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    color: white;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    height: 100%;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.card img.location-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 240px;
}

.btn-kiemkracht {
    background-color: #f9cfa7;
    color: #003c33;
    border: none;
    position: relative;
    z-index: 2;
}

.btn-kiemkracht:hover {
    background-color: #f5b67f;
    color: #002f26;
}

.card-hamme {
    background-color: #006847;
}

.card-dendermonde {
    background-color: #782f40;
}

h1 {
    font-family: "Flexible", sans-serif;
    font-size: 4rem;
    margin: 0 0 -1.5rem 0;
    text-align: center;
    font-weight: normal;
    color: #efd19f;
}

.location-sub {
    font-size: 1rem;
    opacity: 0.85;
    text-align: center;
    color: white;
}

.text-light {
    color: rgba(255, 255, 255, 0.85);
}

.logo-card {
    max-height: 60px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .card-body {
        padding: 1.75rem 1.25rem;
    }
}

.no-background {
    background-image: none;
    background-color: transparent;
    flex: 1 1 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
}

.bg-groen {
    background-color: #006847;
}

.bg-rood {
    background-color: #782f40;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.35rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.dot.orange {
    background-color: #f57c00;
}

.dot.green {
    background-color: #4caf50;
}

.dot.red {
    background-color: #e53935;
}

span[style*="background-color"] {
    display: inline-block;
    width: 10px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;
    margin-right: 8px !important;
    vertical-align: middle;
}

/* GEUNIFIEERDE GRID-LAYOUT */
.kaart-grid {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    grid-template-columns: 1fr;
}

.kaart-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.kaart {
    display: flex;
    flex-direction: column;
}

/* Medium scherm: 2 kolommen, cluster onderaan */
@media (min-width: 768px) and (max-width: 1199px) {
    .kaart-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "kaart-hamme kaart-dendermonde"
            "kaart-cluster kaart-cluster";
    }
    .kaart-hamme {
        grid-area: kaart-hamme;
    }
    .kaart-dendermonde {
        grid-area: kaart-dendermonde;
    }
    .kaart-cluster {
        grid-area: kaart-cluster;
    }
}

/* Groot scherm: 3 kolommen naast elkaar */
@media (min-width: 1200px) {
    .kaart-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .kaart-hamme,
    .kaart-dendermonde,
    .kaart-cluster {
        grid-area: auto;
    }
}
.broodje {
    position: fixed;
    top: -50px;
    font-size: 32px;
    z-index: 9999;
    animation: valBroodje 3s linear forwards;
    pointer-events: none;
}

@keyframes valBroodje {
    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}
.broodje img {
    pointer-events: none;
    user-select: none;
}
