html, body {
	overflow-x: hidden;
	width: 100%;
	min-height: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	margin: 0;
	padding: 0;
	background: #f8f9fa;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* --- NAVIGATIE STYLING --- */
.navbar {
	background: #2c3e50;
	color: #fff;
	height: 70px;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 20px rgba(44,62,80,0.08);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

.nav-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
	box-sizing: border-box;
}

.logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.7rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.logo-image {
	height: 44px;
	width: auto;
	margin-right: 0.4rem;
	border-radius: 8px;
	display: block;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}
.nav-menu li a {
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 400;
	transition: color 0.2s;
}
.nav-menu li a:hover {
	color: #27ae60;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}
.hamburger span {
	display: block;
	width: 28px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s;
}

/* --- HERO STYLING --- */
.hero {
	scroll-margin-top: 0;
	min-height: 100vh;
	min-height: 100dvh;
	height: 100vh;
	height: 100dvh;
	background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(39, 127, 12, 0.7)),
				url('../img/vloertegels.jpg') center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
	box-sizing: border-box;
	margin-top: 0;
	padding-top: 0;
}

.hero-content {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	z-index: 2;
	padding-top: 2vh;
}

.hero-img {
	max-width: 350px;
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 1rem auto;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.hero-content h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	animation: fadeInUp 1s ease;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-content .btn-primary {
	background: #277f0c;
	color: #fff;
	border: none;
	border-radius: 25px;
	padding: 0.8rem 2.2rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 15px rgba(39,127,12,0.18);
	transition: background 0.2s, box-shadow 0.2s;
	animation: fadeInUp 1s ease 0.4s both;
	cursor: pointer;
	margin-top: 0.5rem;
	display: inline-block;
}
.hero-content .btn-primary:hover {
	background: #1f6a0a;
	box-shadow: 0 6px 24px rgba(39,127,12,0.28);
}
.hero-content .hero-reservation {
	margin-top: 4rem;
	margin-bottom: 0;
	font-size: 1.3rem;
	line-height: 1.6;
	animation: fadeInUp 1s ease 0.5s both;
}
.hero-content .hero-reservation a {
	color: #fff;
	/* font-weight: 700; */
	text-decoration: underline;
}
.hero-content .hero-reservation a:hover {
	color: #f4f1de;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* --- SPECIALS SECTION STYLING --- */
.specials-section {
	padding: 4rem 0 2rem 0;
	background: #f8f9fa;
}
.specials-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.6rem;
	color: #277f0c;
	margin-bottom: 2.5rem;
	text-align: center;
}
.specials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
}
.special-item {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(44,62,80,0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.special-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(44,62,80,0.18);
}
.special-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-top-left-radius: 18px;
	border-top-right-radius: 18px;
	box-shadow: 0 4px 24px rgba(44,62,80,0.12);
}
.special-item-content {
	padding: 0.7rem 1.25rem 1.5rem 1.25rem;
	width: 100%;
	box-sizing: border-box;
	text-align: left;
}
.special-item-content h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: #2c3e50;
	margin-bottom: 0.7rem;
}
.special-item-content p {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

/* --- ABOUT SECTION --- */
.about-section {
	padding: 4rem 0 2rem 0;
	background: #f8f9fa;
}
.about-section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}
.about-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.6rem;
	color: #277f0c;
	margin-bottom: 2.5rem;
	text-align: center;
}
.about-text h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.6rem;
	color: #277f0c;
	margin-bottom: 2.5rem;
	text-align: center;
}
.about-flex {
	display: flex;
	align-items: flex-start;
	gap: 2.5rem;
	margin-bottom: 2rem;
}
.about-text {
	flex: 1 1 0;
	min-width: 0;
}
.about-image {
	flex: 0 0 340px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}
.about-image img {
	max-width: 320px;
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(44,62,80,0.12);
	margin-top: 2.5rem;
}

/* --- GALLERY SECTION --- */
.gallery-section {
	padding: 4rem 0 2rem 0;
	background: #f8f9fa;
}
.gallery-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.6rem;
	color: #277f0c;
	margin-bottom: 2.5rem;
	text-align: center;
}
.slideshow-container {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 10px 30px rgba(44,62,80,0.08);
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
}
.slide {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 2rem;
}
.slide.active {
	display: flex;
}
.slide img {
	width: 700px;
	height: 420px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(44,62,80,0.12);
	margin-bottom: 1.5rem;
}
.slide-info {
	text-align: center;
}
.slide-info h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.4rem;
	color: #2c3e50;
	margin-bottom: 0.7rem;
}
.slide-info p {
	color: #666;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.slide-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #277f0c;
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 4px 15px rgba(39,127,12,0.18);
}
.slide-nav.prev {
	left: 16px;
}
.slide-nav.next {
	right: 16px;
}
.slide-dots {
	text-align: center;
	margin-top: 1.5rem;
}
.dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	margin: 0 6px;
	cursor: pointer;
	transition: background 0.2s;
}
.dot.active {
	background: #277f0c;
}

/* --- CONTACT SECTION --- */
.contact-section {
	padding: 4rem 0 2rem 0;
	background: #f8f9fa;
}
.contact-flex {
	display: flex;
	gap: 2.5rem;
	align-items: flex-start;
}
.contact-info {
	flex: 1 1 0;
	min-width: 0;
}
.contact-map {
	flex: 0 0 340px;
	min-width: 0;
	/* max-width: 420px; */
}
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
	margin-bottom: 1.2rem;
}
.contact-item i {
	font-size: 1.7rem;
	color: #277f0c;
	margin-top: 0.2rem;
}
.contact-info h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.6rem;
	color: #277f0c;
	margin-bottom: 2.5rem;
	text-align: left;
}
.contact-info h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	color: #2c3e50;
	margin-bottom: 0.3rem;
}
.contact-info p, .contact-info a {
	color: #222;
	font-size: 1.1rem;
	margin-bottom: 0.2rem;
	text-decoration: none;
}
.contact-map iframe {
	margin-top: 2.5rem;
}

/* --- FOOTER --- */
.footer, .footer-flex {
	max-width: 100%;
	overflow-x: hidden;
}
.footer {
	width: 100%;
	background: #2c3e50;
	color: #fff;
	box-shadow: 0 -2px 20px rgba(44,62,80,0.08);
	font-family: 'Open Sans', sans-serif;
	margin-top: 3rem;
}
.footer-flex {
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	min-height: 120px;
	padding: 1.2rem 5vw 1.2rem 5vw;
	box-sizing: border-box;
	gap: 2rem;
}
.footer-logo {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top: 1rem;
}
.footer-logo span {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	font-weight: bold;
	color: #277f0c;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.footer-logo-image {
	height: 40px;
	width: auto;
	border-radius: 8px;
	display: block;
}
.footer-menu {
	flex: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding-top: 0;
}
.footer-menu h4 {
	color: #277f0c;
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
.footer-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
}
.footer-menu li a {
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
}
.footer-contact {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-start;
	padding-top: 0;
}
.footer-contact h4 {
	color: #277f0c;
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}
.footer-contact ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: right;
}
.footer-contact li {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
.footer-contact a {
	color: #fff;
	text-decoration: underline;
}
.footer-bottom {
	text-align: center;
	margin-top: 2rem;
	font-size: 0.95rem;
	color: #bfc9d1;
}

.footer-bottom p {
	margin: 0;
}

/* --- @MEDIA STYLING --- */
@media (max-width: 900px) {
	.navbar,
	.footer,
	.footer-flex {
		width: 100%;
		max-width: 100%;
	}
	.hamburger {
		display: flex;
		padding-right: 1rem;
	}
	.nav-menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: #2c3e50;
		padding: 1.5rem 0;
		z-index: 9999;
	}
	.nav-menu.active {
		display: flex;
	}
	.nav-container {
		padding: 0 1rem;
	}
	.nav-menu {
		gap: 1rem;
	}
	.footer-flex {
		flex-direction: column;
		align-items: stretch;
		gap: 1.5rem;
		padding: 2rem 2vw 1rem 2vw;
	}
	.footer-logo, .footer-menu, .footer-contact {
		align-items: flex-start;
		text-align: left;
	}
	.footer-menu ul {
		flex-direction: column;
		gap: 0.7rem;
	}
	.footer-contact ul {
		text-align: left;
	}
	.about-flex {
		flex-direction: column;
		gap: 1.5rem;
	}
	.about-image {
		width: 100%;
		justify-content: center;
	}
	.about-image img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0.1rem;
	}
	.contact-flex {
		flex-direction: column;
		gap: 1.5rem;
	}
	.contact-map {
		width: 100%;
		display: flex;
		justify-content: center;
		min-width: 0;
		max-width: 100%;
		margin: 0 auto;
	}
	.contact-map iframe {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 700px) {
	.hero {
		min-height: 100svh;
		height: auto;
	}
	.hero-content {
		padding-top: 1rem;
	}
	.specials-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.special-item {
		min-width: 0;
	}
	.nav-menu {
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background: #2c3e50;
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
		padding: 2rem 0;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: all 0.3s;
		z-index: 99;
	}
	.nav-menu.active {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.hamburger {
		display: flex;
	}
	.slideshow-container {
		max-width: 100%;
		padding: 0.5rem;
	}
	.slide {
		padding: 1rem;
	}
	.slide img {
		width: 320px;
		height: 320px;
	}
	.contact-map {
		min-width: 0;
		max-width: 320px;
		margin: 0 auto;
	}
	.contact-map iframe {
		height: 180px;
		margin-top: 0.1rem;
	}
}
