@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');
body {
    font-family: 'DynaPuff', cursive;
    background: #f6f6f6;
    margin: 0;
    padding: 0;
}

.page-header {
    height: 250px;
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding-left: 30px;
        background-color: rgb(23, 98, 58);
    background-size: cover;
    background-position: center; 
}

.couple-photo {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;

}

.carousel-caption {
    background-color: rgba(0,0,0,0.5);
    padding: 1rem;
    border-radius: 0.5rem;
}

.logo-container {
    padding: 5px;
    width: 175px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

h1 {
    text-align: center;
    margin-top: 1vh;
}

section {
    margin-bottom: 40px;
}

.plant-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
}

.plant-card .voorraad {
    font-weight: bold;
    margin-top: 6px;
}

.plant-card a {
    display: inline-block;
    margin-top: 8px;
    color: #1877f2;
    text-decoration: none;
    font-weight: bold;
}


.plant-card a:hover {
    text-decoration: underline;
}

.plant-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

@media (max-width: 576px) {
    .plant-card img {
        height: 120px;
    }
}
@media (min-width: 768px) {
    .kolommen {
        margin: 20px;
        column-count: 2;
        column-gap: 20px;
    }
}
.lightbox-backdrop {
            position: fixed;
            top:0; left:0; right:0; bottom:0;
            background: rgba(0,0,0,0.8);
            z-index: 1050;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lightbox-img {
            max-width: 90vw;
            max-height: 90vh;
            border-radius: 8px;
            box-shadow: 0 0 32px #000;
        }
        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1060;
        }

         #map {
            height: 500px;
        }
        .pagefooter {
    background-image: url(../images/grasborder.png);
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
}

.pagefooter .nav a {
    position: relative;
    z-index: 100 !important;
    color: #1a1a1a !important;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.social-link {
    position: relative !important;
    z-index: 200 !important;
    color: #2c3e50 !important;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.9) !important;
    display: inline-block !important;
}

.pagefooter .nav a:hover,
.social-link:hover {
    color: #0066cc !important;
    transform: scale(1.1);
}