/* =========================
   RESET
========================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Segoe UI", Arial, sans-serif;
	background: #0c120d;
	color: #ffffff;
	line-height: 1.6;
}

/* =========================
   LAYOUT CONTAINER
========================= */
.container {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
}

/* =========================
   HEADER
========================= */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(6px);
	z-index: 1000;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
}

.logo img {
	height: clamp(60px, 7vw, 80px);
	width: auto;
	display: block;
	transition: transform 0.25s ease, filter 0.25s ease;
}

.logo img:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

nav a {
	color: #fff;
	text-decoration: none;
	margin-left: 28px;
	font-weight: 600;
	transition: 0.2s ease;
}

nav a:hover {
	color: #8dd000;
}

/* =========================
   HERO
========================= */
.hero {
	min-height: 100vh;
	background: url("images/hero-gazon.jpg") center/cover no-repeat;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 100px;
}

.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right,
			rgba(0, 0, 0, 0.85) 35%,
			rgba(0, 0, 0, 0.3) 75%);
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 620px;
}

.hero h1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero p {
	font-size: 1.1rem;
	margin-bottom: 35px;
	opacity: 0.9;
}

/* =========================
   BUTTON
========================= */
.btn {
	background: #8dd000;
	color: #000;
	padding: 14px 32px;
	font-weight: 700;
	border: none;
	text-decoration: none;
	display: inline-block;
	transition: 0.2s ease;
}

.btn:hover {
	background: #a4e600;
	transform: translateY(-2px);
}

.btn.full {
	width: 100%;
}

/* =========================
   SECTIONS
========================= */
.section {
	padding: 90px 0;
}

.section.dark {
	background: #111611;
}

h2 {
	text-align: center;
	margin-bottom: 60px;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* =========================
   DIENSTEN GRID
========================= */
.diensten-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dienst {
	background: #1a211a;
	overflow: hidden;
	cursor: pointer;
	transition: 0.3s ease;
}

.dienst:hover {
	transform: translateY(-6px);
}

.dienst img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
}

.dienst h3 {
	padding: 18px;
	font-size: 1.1rem;
}

/* diensten links */

.dienst-link {
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}

.dienst-link:visited {
	color: inherit;
}

.dienst-link:active {
	color: inherit;
}

.dienst-link h3 {
	color: #ffffff;
	transition: color 0.2s ease;
}

.dienst-link:hover h3 {
	color: #8dd000;
}

.dienst-link:hover .dienst {
	transform: translateY(-6px);
}

/* =========================
   REALISATIES
========================= */
.gallery {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	cursor: pointer;
	transition: 0.3s ease;
}

.gallery img:hover {
	transform: scale(1.05);
}

/* =========================
   CONTACT
========================= */
.contact-container {
	max-width: 600px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px;
	margin-bottom: 18px;
	background: #1a211a;
	border: 1px solid #2a322a;
	color: #fff;
	font-size: 0.95rem;
}

.contact-form textarea {
	min-height: 130px;
}

.facebook-link {
	text-align: center;
	margin-top: 35px;
}

.fb-btn {
	background: #1877f2;
	color: white;
	padding: 12px 24px;
	text-decoration: none;
	display: inline-block;
}

.form-success {
	background: #e8f7ec;
	color: #1f7a3a;
	border: 1px solid #b7e2c1;
	padding: 14px 18px;
	border-radius: 6px;
	margin-bottom: 22px;
	font-weight: 600;
	text-align: center;
}

.honeypot {
	display: none;
}

/* =========================
   FOOTER
========================= */
footer {
	background: #000;
	text-align: center;
	padding: 25px 0;
	font-size: 0.85rem;
	opacity: 0.7;
}

/* =========================
   FOOTER LINKS
========================= */

footer a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

footer a:visited {
	color: #ffffff;
}

footer a:hover {
	color: #8dd000;
}

/* =========================
   LIGHTBOX SLIDER
========================= */
#lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.95);
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

#lightbox img {
	max-width: 90%;
	max-height: 85%;
}

#close,
#prev,
#next {
	position: absolute;
	font-size: 42px;
	color: #fff;
	cursor: pointer;
}

#close {
	top: 30px;
	right: 40px;
}

#prev {
	left: 40px;
}

#next {
	right: 40px;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */
@media (max-width: 992px) {
	.hero {
		text-align: left;
	}
}

@media (max-width: 768px) {

	nav a {
		margin-left: 15px;
		font-size: 0.9rem;
	}

	.hero {
		padding-top: 120px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero p {
		font-size: 1rem;
	}

	.dienst img,
	.gallery img {
		height: 200px;
	}
}

@media (max-width: 480px) {

	.hero h1 {
		font-size: 1.8rem;
	}

	.hero p {
		font-size: 0.95rem;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

	nav {
		display: flex;
		gap: 12px;
	}
}