/* Algemene stijl */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f0f4f2;
    color: #333;
}
	/* Navigatiebalk */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    color: #2e7d32;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* animatie lijn onder tekst */
.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #2e7d32;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #2e7d32;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header */
header {
    background: linear-gradient(120deg, #2e7d32, #66bb6a);
    color: white;
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 2s ease;
}

/* GALERIJ STYLING */

.galerij-section{
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.galerij-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.galerij-item img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
}

.galerij-item img:hover{
    transform: scale(1.05);
}

/* LIGHTBOX  (lightbox is dat als je op een plaatje klikt hij vergroot*/
#lightbox {
    display: none;                
    position: fixed;             
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8); 
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
/*FOOTER*/

footer { text-align: center;
    padding: 20px;
    background: #2e7d32;
    color: white;
}