body {
	font-family: 'Barlow', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.menu {
	all: unset; /* Reset alle stijlen */
}

/* Algemene stijlen */
body {
	font-family: 'Barlow', sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #000;
	font-weight: 200; 
}

header, footer {
	padding: 20px;
	text-align: center;
}

a {
	color: inherit; /* Standaard tekstkleur voor links */
	text-decoration: none; /* Geen onderstreping */
}

h2 {
	font-size: 1.3em;
	
	font-weight: 400; /* Lichte tekst */
	
}

/* Header */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
	background-color: white;
	opacity: 1;
	position: sticky;
	top: 0; /* Zorgt ervoor dat de header aan de bovenkant blijft */
	z-index: 1000; /* Zorgt ervoor dat de header boven andere elementen blijft */
	margin-top: 20px;
}

.logo {
	font-size: 1.5em;
	font-weight: 200;
	text-transform: uppercase;
	text-decoration: none;
    color: inherit; 
}

.logo:hover {
    /* Optional: add hover effect */
    opacity: 0.8;
}

/* Navigatie */
nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
}

nav a {
	text-decoration: none;

	text-transform: uppercase;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.hamburger span {
	height: 2px;
	width: 100%;
	background-color: #000;
	transition: all 0.3s;
}

/* Galerij */
.gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 20px;
}

.image-item {
	width: 25%; /* Vier afbeeldingen per rij op grotere schermen */
	padding: 1rem;
	box-sizing: border-box;
	text-align: center;
	/* margin-bottom: 1rem; */
}

.image-item img {
	width: 100%;
	height: auto;
	display: block;
}

.image-info {
	margin-top: 15px;
	font-size: 0.8em;
	text-transform: uppercase;
	text-align: left;
}

/* Slider */
.slider {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.slider-content {
	position: relative; 
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	text-align: left; /* Links uitlijnen van de tekst */
	max-width: 90%;
	max-height: 90%;
	overflow: auto;
	display: flex; /* Flexbox om afbeelding en details naast elkaar te zetten */
}

.slider-image {
	width: 80%; /* Afbeelding neemt 60% van de ruimte in */
	padding-right: 20px;
	box-sizing: border-box;
}

.slider-image img {
	max-width: 100%;
	max-height: 80vh; /*vh = viewport height*/
	display: block;
	margin: 0 auto;
	object-fit: contain; /* Zorg ervoor dat de afbeelding volledig zichtbaar is */
}

.slider-details {
	width: 20%; /* Details nemen 40% van de ruimte in */
	box-sizing: border-box;
}

.slider-details h3 {
	margin-top: 0;
	font-weight: 200;
	text-transform: uppercase;
}

.slider-details .description {
	margin-bottom: 20px;
}



.slider-thumbnail {
	width: 70px;
	height: 70px;
	margin: 5px;
	cursor: pointer;
	border: 2px solid transparent; /* Standaard geen rand */
}

.slider-thumbnail.active {
	border: 2px solid rgb(77, 76, 76); /* Rode rand voor de actieve thumbnail */
}

.close-button {
	position: absolute;
	top: 30px;
	right: 90px;
	background: none;
	border: none;
	color: rgb(255, 255, 255);
	font-size: 2em;
	cursor: pointer;
	z-index: 1001; 
}

/* Footer */
footer {
	text-align: center;
	padding: 20px;
	font-size: 0.9em;
	text-transform: uppercase;
}

/* Media Queries */
@media (max-width: 1024px) {
	.image-item {
		width: 33.33%; /* Drie afbeeldingen per rij op kleinere schermen */
	}

	nav ul {
		display: none; 
		flex-direction: column; 
		position: absolute;
		top: 60px; /* Onder de header */
		left: 0;
		width: 100%;
		background-color: #fffdfd;
		text-align: center;
	}

	nav ul.active {
		display: flex; 
	}

	nav li {
		padding: 10px;
		border-bottom: 1px solid #ddd;
	}

@media (max-width: 1024px) {
    .nav-list a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: inherit;
        width: 100%;
        box-sizing: border-box;
    }
    
    .nav-list a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

	.hamburger {
		display: flex; /* Toon hamburger menu */
	}
}

@media (max-width: 768px) {
	.image-item {
		width: 90%; /* Eén afbeelding per rij op mobiele schermen */
	}
}

#about {
	margin-left: 10vw;
	max-width: 70vw;
}


.selfie {
	margin: auto;
	max-width: 70vw;
}

.selfie img {
	width: 100%;
	height: auto;
}

.form-container {
            background: white;
           
			max-width: 70vw;
			margin-left: 10vw;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            color: #333;
			
        }
        
        input, textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
            box-sizing: border-box;
        }
        
        input:focus, textarea:focus {
            outline: none;
            border-color: #007bff;
        }
        
        textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            background: #333;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .submit-btn:hover {
            background: grey;
        }
        
        .submit-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        
        .status-message {
            margin-top: 15px;
            padding: 10px;
            border-radius: 4px;
            display: none;
        }
        
        .status-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .status-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .spinner {
            display: none;
            margin-left: 10px;
        }


.image-item::after {
    content: attr(data-description);
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
    padding: 0 10px;
}

/* Hide on desktop */
@media (min-width: 768px) {
    .image-item::after {
        display: none;
    }
}

/* Only show if data-description has content */
.image-item[data-description=""]::after {
    display: none;
}

@media (max-width: 767px) {
	footer {
		font-size: 0.6em;
	}
}