/* Base Reset */
html,
body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #e4dfdf;
	color: #333;
}

/* Body Background */
body {
	/*background-image: url("./img/Gouda_Brot_1.jpg");*/
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

/* Optional dark overlay over background */
body::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: -1;
}

/* Paragraph Styling */
p {
	font-size: 1.5rem;
	line-height: 1.6;
	color: #fff;
	text-align: left;
	padding: 20px;
}

/* Paragraph Styling Center*/
.p_center {
	font-size: 1.5rem;
	line-height: 1.6;
	color: #fff;
	text-align: center;
	padding: 20px;
}

/* Images */
img {
	padding-left: 20px;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

/* Header */
#header {
	background-color: #2c3e50;
	color: #ecf0f1;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
	padding: 20px;
	text-align: center;
	font-size: 2rem;
	border-bottom: 5px solid #2980b9;
}

/* Navigation Bar */
#nav {
	position: sticky;
	top: 0;
	background-color: #34495e;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	z-index: 999;
}

/* Nav Links */
#nav a {
	color: #ecf0f1;
	text-decoration: none;
	margin: 0 12px;
	padding: 10px 16px;
	border-radius: 4px;
	font-size: 1.2rem;
	transition: background-color 0.3s, color 0.3s;
}

#nav a:hover {
	background-color: #2980b9;
	color: #fff;
}

#nav a.active {
	background-color: #1abc9c;
	color: white;
}

/* Search Input */
#nav input[type="text"] {
	padding: 8px 12px;
	font-size: 1rem;
	border: none;
	border-radius: 4px;
	outline: none;
	margin-left: auto;
}

/* Centered Content Block */
.centered_text {
	background-color: rgba(44, 62, 80, 0.85);
	color: #ecf0f1;
	text-shadow: 1px 1px black;
	width: 60%;
	margin: 40px auto;
	padding: 20px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
	font-size: 1rem;
	text-align: left;
}