.wolk-hero {
    font-family: 'Segoe UI', system-ui, sans-serif;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    border-radius: 12px;
    padding: 1.2rem;
    transition: transform 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-item:hover {
    transform: translateY(-3px);
}

.bento-item:nth-child(3n+1) {
    background-color: #c2e0ff;
}

.bento-item:nth-child(3n+2) {
    background-color: #d4e9ff;
}

.bento-item:nth-child(3n+3) {
    background-color: #e6f3ff;
}

.bento-item.large {
    grid-column: 1 / -1;
    background-color: #b0d8ff;
}

.bento-item.image {
    padding: 0;
    height: 300px;
}

.bento-item.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.bento-item h2 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.bento-item h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}
.bento-item li {
    color: #2d3748;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

.hoogteimg {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: zoom-in;
    transition: opacity 0.3s;
}

.hoogteimg:hover {
    opacity: 0.9;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    cursor: zoom-out;
}