* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Raleway', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1;
	min-height: 100vh;
}

/* Navbar Styles */
.navbar {
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.navbar-logo:hover {
	opacity: 0.8;
}

.logo-img {
	height: 40px;
	width: auto;
}

.navbar-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.navbar-link {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.3s ease;
	position: relative;
}

.navbar-link:hover {
	color: rgb(59, 194, 171);
}

.navbar-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: rgb(59, 194, 171);
	transition: width 0.3s ease;
}

.navbar-link:hover::after {
	width: 100%;
}

.bg-color {
	background-color: rgb(59, 194, 171);
}

.accent-text {
	color: rgb(59, 194, 171);
}

.page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem;
}

/* Footer Styles */
.footer {
	background-color: #2c2c2c;
	color: #fff;
	padding: 3rem 2rem 2rem;
	margin-top: auto;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: rgb(59, 194, 171);
	font-size: 1.2rem;
	font-weight: 600;
}

.social-links {
	display: flex;
	gap: 1rem;
	flex-direction: column;
}

.social-link,
.footer-link {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.social-link:hover,
.footer-link:hover {
	color: rgb(59, 194, 171);
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-info p {
	margin-bottom: 0.5rem;
}

.contact-info a {
	color: #fff;
	text-decoration: none;
}

.contact-info a:hover {
	color: rgb(59, 194, 171);
}

/* Menu Component Styles */
.menu-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
}

.menu-header {
	text-align: center;
	margin-bottom: 3rem;
}

.menu-header h1 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
	font-weight: 700;
}

.menu-categories {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.category-btn {
	padding: 1rem 1.5rem;
	background-color: #f0f0f0;
	border: 2px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Raleway', sans-serif;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	min-width: 120px;
}

.category-btn:hover {
	background-color: rgb(59, 194, 171);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(59, 194, 171, 0.3);
}

.category-btn.active {
	background-color: rgb(59, 194, 171);
	color: #fff;
	border-color: rgb(59, 194, 171);
	box-shadow: 0 4px 12px rgba(59, 194, 171, 0.4);
}

.category-primary {
	font-size: 1rem;
	font-weight: 600;
	display: block;
}

.category-secondary {
	font-size: 0.85rem;
	font-weight: 400;
	opacity: 0.9;
	display: block;
}

.category-btn:hover .category-secondary,
.category-btn.active .category-secondary {
	opacity: 0.8;
}

/* Menu Section Styles */
.menu-section {
	margin-top: 2rem;
	animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.menu-section-header {
	text-align: center;
	margin-bottom: 2.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid rgb(59, 194, 171);
}

.menu-section-title {
	font-size: 1.1rem;
	font-weight: 500;
	color: #666;
	margin-bottom: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.menu-section-subtitle {
	font-size: 2rem;
	font-weight: 700;
	color: #333;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.menu-title-primary {
	display: block;
}

.menu-title-secondary {
	display: block;
	font-size: 0.7em;
	font-weight: 400;
	color: #666;
	opacity: 0.8;
}

.menu-subsection {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e0e0e0;
}

.menu-subsection-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.menu-subsection-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.menu-subsection-description {
	font-size: 0.95rem;
	color: #666;
	font-style: italic;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.menu-items-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.menu-item {
	padding: 1.25rem 1.5rem;
	background-color: #fafafa;
	border-radius: 8px;
	border-left: 4px solid rgb(59, 194, 171);
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.menu-item:hover {
	transform: translateX(4px);
	box-shadow: 0 4px 12px rgba(59, 194, 171, 0.15);
	background-color: #fff;
}

.menu-item-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1.5rem;
}

.menu-item-name {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.menu-item-link {
	text-decoration: none;
	color: inherit;
	flex: 1;
	display: block;
	transition: opacity 0.3s ease;
}

.menu-item-link:hover {
	opacity: 0.8;
}

.menu-item-link:hover .item-name-primary {
	color: rgb(59, 194, 171);
}

.item-name-primary {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	display: block;
	line-height: 1.4;
}

.item-name-secondary {
	font-size: 0.9rem;
	font-weight: 400;
	color: #666;
	display: block;
	line-height: 1.3;
	font-style: italic;
}

.menu-item-addon {
	margin-top: 0.5rem;
	padding-top: 0.5rem;
	border-top: 1px dashed #ddd;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.menu-item-addon .item-name-primary {
	font-size: 0.95rem;
	font-weight: 500;
	color: #555;
}

.menu-item-addon .item-name-secondary {
	font-size: 0.85rem;
	color: #777;
}

.menu-item .price {
	font-weight: 700;
	color: rgb(59, 194, 171);
	font-size: 1.3rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.menu-item:not(:has(.price)) {
	border-left-color: #999;
	background-color: #f5f5f5;
}

.menu-item:not(:has(.price)) .item-name-primary {
	font-size: 1.2rem;
	font-weight: 600;
	color: #444;
}

/* Contact Page Styles */
.contact-page {
	text-align: center;
	padding: 2rem;
}

.contact-page h1 {
	margin-bottom: 2rem;
}

.contact-page p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
}

.contact-page a {
	color: rgb(59, 194, 171);
	text-decoration: none;
}

.contact-page a:hover {
	text-decoration: underline;
}

/* Home Page Styles */
.home-page {
	width: 100%;
}

.hero-section {
	background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
	padding: 5rem 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 70vh;
}

.hero-content {
	text-align: center;
	max-width: 800px;
}

.hero-logo {
	height: 120px;
	width: auto;
	margin-bottom: 3rem;
	opacity: 0.95;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.hero-gezelligheid {
	margin-bottom: 3rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.gezelligheid-primary {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	display: block;
	line-height: 1.2;
	margin: 0;
}

.gezelligheid-secondary {
	font-size: 1.2rem;
	font-weight: 400;
	color: #666;
	font-style: italic;
	display: block;
	margin: 0;
}

.hero-counter-image {
	margin: 3rem auto;
	max-width: 800px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.counter-image {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.hero-description {
	font-size: 1.8rem;
	color: #333;
	line-height: 1.7;
	margin: 4rem auto 3.5rem;
	max-width: 800px;
	font-weight: 400;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 1rem 2.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: inline-block;
	font-family: 'Raleway', sans-serif;
	border: 2px solid transparent;
}

.btn-primary {
	background-color: rgb(59, 194, 171);
	color: #fff;
}

.btn-primary:hover {
	background-color: rgb(50, 170, 150);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 194, 171, 0.4);
}

.btn-secondary {
	background-color: transparent;
	color: rgb(59, 194, 171);
	border-color: rgb(59, 194, 171);
}

.btn-secondary:hover {
	background-color: rgb(59, 194, 171);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(59, 194, 171, 0.3);
}

.reservation-section {
	background-color: #2c2c2c;
	color: #fff;
	padding: 4rem 2rem;
	text-align: center;
}

.reservation-content {
	max-width: 800px;
	margin: 0 auto;
}

.reservation-title {
	font-size: 2rem;
	font-weight: 700;
	color: rgb(59, 194, 171);
	margin-bottom: 1.5rem;
	letter-spacing: 0.1em;
}

.reservation-text {
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.reservation-phone {
	font-size: 1.5rem;
	font-weight: 600;
	color: rgb(59, 194, 171);
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	border: 2px solid rgb(59, 194, 171);
	border-radius: 8px;
}

.reservation-phone:hover {
	background-color: rgb(59, 194, 171);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(59, 194, 171, 0.4);
}

.gallery-section {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	width: 100%;
	overflow: hidden;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
	transform: scale(1.1);
}

.gallery-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
	opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
	.navbar-container {
		padding: 0 1rem;
	}

	.logo-img {
		height: 32px;
	}

	.navbar-links {
		gap: 1.5rem;
	}

	.navbar-link {
		font-size: 0.9rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.menu-container {
		padding: 1rem;
	}

	.menu-header h1 {
		font-size: 2rem;
	}

	.menu-categories {
		gap: 0.5rem;
	}

	.category-btn {
		padding: 0.75rem 1rem;
		min-width: 100px;
	}

	.category-primary {
		font-size: 0.9rem;
	}

	.category-secondary {
		font-size: 0.75rem;
	}

	.menu-section-subtitle {
		font-size: 1.5rem;
	}

	.menu-item-content {
		flex-direction: column;
		gap: 0.75rem;
	}

	.menu-item .price {
		align-self: flex-end;
		font-size: 1.2rem;
	}

	.item-name-primary {
		font-size: 1rem;
	}

	.item-name-secondary {
		font-size: 0.85rem;
	}

	.hero-section {
		padding: 3rem 1.5rem;
		min-height: 50vh;
	}

	.hero-logo {
		height: 80px;
		margin-bottom: 2rem;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-gezelligheid {
		margin-bottom: 2rem;
	}

	.gezelligheid-primary {
		font-size: 1.8rem;
	}

	.gezelligheid-secondary {
		font-size: 1rem;
	}

	.hero-counter-image {
		margin: 2rem auto;
		border-radius: 8px;
	}

	.hero-description {
		font-size: 1.3rem;
		margin: 2.5rem auto 2rem;
	}

	.reservation-section {
		padding: 3rem 1.5rem;
	}

	.reservation-title {
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.reservation-text {
		font-size: 1rem;
		margin-bottom: 1.5rem;
	}

	.reservation-phone {
		font-size: 1.2rem;
		padding: 0.75rem 1.5rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
		padding: 0.9rem 2rem;
		font-size: 1rem;
	}

	.gallery-section {
		grid-template-columns: 1fr;
	}
}
