/*
Theme Name: Event Theme
Description: Mijn eigen WordPress theme
Version: 1.0
Author: Buro Cinq
*/

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Lora:wght@400;600&display=swap');

:root {
	--kleur-achtergrond: #f7f3eb;
	--kleur-oppervlak: #ffffff;
	--kleur-tekst: #1a1a1a;
	--kleur-accent: #2d6a4f;
	--lettertype-hoofd: 'Playfair Display', serif;
	--lettertype-body: 'Lora', serif;
}

body {
	background-color: var(--kleur-achtergrond);
	color: var(--kleur-tekst);
	font-family: var(--lettertype-body);
	font-size: 1rem;
	line-height: 1.6;
}

h1, h2, h3 {
	font-family: var(--lettertype-hoofd);
	font-style: italic;
	font-weight: 400;
}

header {
	padding: 1rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #eee;
}

header nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
}

header nav a {
	text-decoration: none;
	color: inherit;
}

main {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem;
}

.site-header {
	padding: 1rem 2rem;
	background-color: var(--kleur-oppervlak);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
}

.header-inner {
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
		margin-right: auto;

}

.site-logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--kleur-tekst);
}

.site-logo span {
	font-family: var(--lettertype-hoofd);
	font-style: italic;
	font-size: 1.5rem;
	color: var(--kleur-tekst);
}

.site-nav ul {
	list-style: none;
	display: flex;
	gap: 2rem;
}

.site-nav a {
	font-family: var(--lettertype-body);
	font-size: 0.95rem;
	color: var(--kleur-tekst);
	text-decoration: none;
	transition: color 0.2s;
}

.site-nav a:hover {
	color: var(--kleur-accent);
}

.site-logo img {
	border-radius: 50%;
}

.homepage-hero {
	padding: 4rem 2rem 2rem;
	max-width: 1280px;
	margin: 0 auto;
	text-align: center;
}

.homepage-hero h1 {
	font-size: clamp( 2rem, 5vw, 3.5rem );
	margin-bottom: 0.75rem;
}

.homepage-hero p {
	color: var(--kleur-tekst);
	opacity: 0.6;
	font-size: 1.1rem;
}

.homepage-inhoud {
	max-width: 1280px;
	margin: 0 auto;
	padding: 2rem;
}

.site-nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	width: 100%;
	padding: 1rem 2rem;
	background-color: var(--kleur-oppervlak);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	position: relative;
}