﻿
*, *::before, *::after
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root
{
	--red: #c0392b;
	--red-dark: #922b21;
	--nav-h: 64px;
}

html, body
{
	height: 100%;
}

body
{
	font-family: system-ui, -apple-system, sans-serif;
	background: #111;
	color: #fff;
}

/* NAV */
nav
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--nav-h);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.5rem;
	background: rgba(10,10,10,0.75);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo
{
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--red);
	text-decoration: none;
}

.nav-links
{
	display: flex;
	gap: 0.25rem;
	list-style: none;
}

	.nav-links a
	{
		display: block;
		padding: 0.4rem 0.9rem;
		border-radius: 99px;
		color: rgba(255,255,255,0.75);
		text-decoration: none;
		font-size: 0.9rem;
		font-weight: 500;
		transition: background 0.2s, color 0.2s;
	}

		.nav-links a:hover
		{
			background: rgba(192,57,43,0.25);
			color: #fff;
		}

.hamburger
{
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}

	.hamburger span
	{
		display: block;
		width: 24px;
		height: 2px;
		background: #fff;
		border-radius: 2px;
		transition: transform 0.3s, opacity 0.3s;
	}

	.hamburger.open span:nth-child(1)
	{
		transform: translateY(7px) rotate(45deg);
	}

	.hamburger.open span:nth-child(2)
	{
		opacity: 0;
	}

	.hamburger.open span:nth-child(3)
	{
		transform: translateY(-7px) rotate(-45deg);
	}

.drawer
{
	display: none;
	position: fixed;
	top: var(--nav-h);
	left: 0;
	right: 0;
	z-index: 9;
	background: rgba(10,10,10,0.97);
	backdrop-filter: blur(20px);
	padding: 1rem 1.5rem 2rem;
	transform: translateY(-110%);
	transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

	.drawer.open
	{
		transform: translateY(0);
	}

	.drawer a
	{
		display: block;
		padding: 1rem 0;
		color: rgba(255,255,255,0.8);
		text-decoration: none;
		font-size: 1.4rem;
		font-weight: 700;
		border-bottom: 1px solid rgba(255,255,255,0.07);
	}

		.drawer a:last-child
		{
			border-bottom: none;
		}

		.drawer a:hover
		{
			color: var(--red);
		}

@media (max-width: 640px)
{
	.nav-links
	{
		display: none;
	}

	.hamburger
	{
		display: flex;
	}

	.drawer
	{
		display: block;
	}
}

/* HERO */
.hero
{
	height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding: 2rem;
}

.hero-bg
{
	position: absolute;
	inset: -5vw;
	width: 110vw;
	height: 110%;
	background: url('/rode-huis.jpeg') center 30% / cover no-repeat;
	will-change: transform;
}

.hero-overlay
{
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}

.hero-content
{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

	.hero-content h1
	{
		font-size: clamp(3rem, 12vw, 8rem);
		font-weight: 900;
		letter-spacing: -0.04em;
		line-height: 0.92;
		text-shadow: 0 8px 40px rgba(0,0,0,0.8);
	}

		.hero-content h1 span
		{
			color: var(--red);
		}

	.hero-content p
	{
		font-size: clamp(1rem, 3.5vw, 1.4rem);
		opacity: 0.85;
		max-width: 500px;
		line-height: 1.5;
		text-shadow: 0 4px 20px rgba(0,0,0,0.8);
	}

.btn
{
	display: inline-block;
	padding: 0.75rem 2rem;
	border-radius: 99px;
	background: var(--red);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: background 0.2s, transform 0.15s;
}

	.btn:hover
	{
		background: var(--red-dark);
		transform: translateY(-2px);
	}
