/* CSS Reset */

/* Remove default margin and padding from all elements */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-style: "Open Sans", serif;
}

/* Ensure consistent border-box sizing */
html {
	box-sizing: border-box;
}

/* Remove default font styles */
body {
	font-size: 100%; /* Reset font size to browser default */
	line-height: 1.5; /* Improve readability */
	font-family: sans-serif; /* Default font-family */
	color: #000;
	background: #FBF9F6 !important;
}

/* Remove default list styles */
ul, ol {
	list-style: none;
}

/* Remove link underline and ensure consistent color */
a {
	text-decoration: none;
	color: inherit;
}

/* Reset tables */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Remove default styles for form elements */
input, button, textarea, select {
	font: inherit;
	border: none;
	outline: none;
	background: none;
}

/* Reset image styles */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Reset headings */
h1, h2, h3, h4, h5, h6 {
	font-size: inherit;
	font-weight: normal;
}

/* Remove blockquote styles */
blockquote {
	margin: 0;
	padding: 0;
}

/* Reset vertical alignment for inline-block elements */
button, input {
	vertical-align: middle;
}

.container {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	padding: 0 1rem;
}


.container .form{
	display: flex;
	justify-content: center;
	max-width: 700px;
	margin: 0 auto;
	padding: 1.5rem;
	background: white;
}

.gform_wrapper{
	width: 100%;
}

.gform_wrapper p{
	margin-bottom: 3rem;
}

.gform_wrapper legend{
	font-weight: bold !important;
	font-size: 16px !important; 
	position: relative;
	width: 100%;
}

.gform_wrapper legend::after{
	position: absolute;
	content: '';
	width: 100%;
	top: -1.5rem;
	left: 0;
	border-top: 1px solid lightgray !important;
}

header{
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background: #FBF9F6;
	padding: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header *{
	text-transform: uppercase;
}

header img{
	width: 50px;
}

header h1{
	font-weight: bold;
	font-size: 20px;
}

#menu-hoofdmenu{
	display: flex;
	align-items: center;
	flex-direction: column;
}

/* Base styles for the menu */
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

.menu > li {
	position: relative; /* Required for positioning dropdown */
}

.menu a {
	text-decoration: none;
	color: #000;
	padding: 10px 20px;
	display: block;
	font-size: 18px;
}

#menu-item-40 a{
	padding-right: 0;
}

/* Dropdown menu styles */
.sub-menu {
	list-style: none;
	position: absolute;
	top: 100%; /* Position below the parent */
	left: 0;
	display: none; /* Hidden by default */
	background: #FBF9F6;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.sub-menu li {
	margin: 0;
}

.sub-menu a {
	padding: 10px 15px;
	white-space: nowrap; /* Prevent text from breaking */
}

/* Show dropdown on hover */
.menu > li:hover > .sub-menu {
	display: block;
}

.logo-placeholder{
	background: #9C735C;
	width: 50px;
	height: 50px;
}

.hero-image{
	width: 100%;
	height: 100vh;
}

.hero-image img{
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.d-flex{
	display: flex;
}

.align-center{
	align-items: center;
}

.space-between{
	justify-content: space-between;
}

.justify-center{
	justify-content: center;
}

section{
	padding: 3rem 0;
}

h1 a{
	color: black;
	text-decoration: none;
}

.post-thumbnail img{
	width: 100%;
	height: auto;
	object-fit: cover;
	cursor: pointer;

}

.filter{
	margin-bottom: 1.5rem;
	h2{
		text-transform: uppercase;
		margin-right: 1.5rem;
	}
	a{
		color: black;
		text-decoration: none;
		font-size: 18px;
		margin-right: 1.5rem;
		&:last-of-type{
			margin-right: 0;
		}
	}
}

.work-container{
	padding-right: 1.5rem;
	.content{
		background: whitesmoke;
		padding: 1.5rem;
		h2{
			font-size: 2rem;
		}
	}
}

.work-links{
	a{
		color: black;
		text-decoration: none;
		margin-right: 1.5rem;
		&:last-of-type{
			margin-right: 0;
		}
	}
}

/* Hamburger */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
	z-index: 2;
}

.menu-toggle span {
	width: 26px;
	height: 2px;
	background: #000;
	display: block;
}

/* Mobile menu overlay */
.mobile-menu {
	position: fixed;
	inset: 0;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-100%);
	transition: transform 0.35s ease;
	z-index: 1000;
}

.mobile-menu.active {
	transform: translateY(0);
}

/* Sluitknop */
.menu-close {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 32px;
	background: none;
	border: none;
	cursor: pointer;
}

/* Menu items */
.mobile-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.mobile-menu-list li {
	margin: 20px 0;
}

.mobile-menu-list a {
	font-size: 2rem;
	font-weight: 700;
	text-decoration: none;
	color: #000;
}

/* Responsive */
@media (max-width: 991px) {
	.primary-menu {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}
}

.fancybox__caption a{
	text-decoration: none;
	color: white;
}

.fancybox__caption{
	text-align: center;
}