/*
Theme Name: Noordatelier
Theme URI: https://noordatelier.org
Author: Noordatelier
Description: Kapsalon en schoonheidssalon in Groningen.
Version: 1.0.5
Text Domain: noordatelier
*/

:root {
	--nat-rose: #b76e79;
	--nat-cream: #f7efe8;
	--nat-ink: #2b2422;
	--nat-sage: #6b7f6a;
	--nat-paper: #fffaf6;
	--nat-line: #e4d4c8;
	--nat-display: "Cormorant Garamond", serif;
	--nat-text: "Nunito Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--nat-text);
	color: var(--nat-ink);
	background: var(--nat-paper);
	line-height: 1.7;
}
img { max-width: 100%; display: block; }
h1, h2, h3 {
	font-family: var(--nat-display);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }
a { color: var(--nat-rose); }
p { margin: 0 0 1em; }
address { font-style: normal; }

.nat-btn, .nat-ghost {
	display: inline-block;
	font-family: var(--nat-text);
	font-weight: 700;
	font-size: 0.86rem;
	padding: 12px 20px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
}
.nat-btn { background: var(--nat-rose); color: #fff; }
.nat-btn:hover { background: #9a5560; }
.nat-ghost {
	background: transparent;
	color: var(--nat-sage);
	box-shadow: inset 0 0 0 1.5px var(--nat-sage);
}
.nat-ghost:hover { background: var(--nat-sage); color: #fff; }

/* Header: logo left, nav immediately right of logo, phone far right */
.nat-bar {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 14px 4vw;
	background: var(--nat-cream);
	border-bottom: 1px solid var(--nat-line);
}
.nat-mark {
	font-family: var(--nat-display);
	font-size: 1.7rem;
	color: var(--nat-ink);
	text-decoration: none;
	white-space: nowrap;
}
.nat-mark em { font-style: italic; color: var(--nat-rose); }
.nat-row {
	flex: 1;
	min-width: 0;
}
.nat-row ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nat-row a { text-decoration: none; color: var(--nat-ink); font-size: 0.92rem; }
.nat-row .current-menu-item a { color: var(--nat-rose); }
.nat-phone {
	text-align: right;
	font-size: 0.82rem;
	line-height: 1.35;
}
.nat-phone a { color: var(--nat-ink); text-decoration: none; font-weight: 700; }
.nat-open { display: none; background: none; border: 1px solid var(--nat-ink); padding: 8px 12px; }
.nat-drawer { display: none; background: var(--nat-ink); color: #fff; padding: 18px 4vw; }
.nat-drawer a { color: #fff; }
.nat-drawer ul { list-style: none; margin: 0; padding: 0; }
.nat-drawer li { margin: 10px 0; }

.nat-kicker {
	font-size: 0.74rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--nat-sage);
	margin-bottom: 0.5em;
}

/* Home: chair story + vertical timeline + salon visiting cards */
.nat-stoel {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	min-height: 70vh;
	background: var(--nat-cream);
}
.nat-stoel-copy { padding: 8vh 6vw; }
.nat-stoel-foto {
	min-height: 380px;
	background: #c9b8ae url("images/hero.jpg") center/cover;
}
.nat-tijdlijn {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 72px 6vw;
	border-left: 3px solid var(--nat-rose);
}
.nat-tijdlijn article {
	position: relative;
	padding: 0 0 36px 28px;
}
.nat-tijdlijn article::before {
	content: "";
	position: absolute;
	left: -9px;
	top: 8px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--nat-rose);
}
.nat-prijs {
	padding: 0 6vw 72px;
}
.nat-visite {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	gap: 0;
	padding: 12px 0 28px;
}
.nat-visite-kaart {
	width: 168px;
	margin: 0 -10px;
	padding: 18px 16px 20px;
	background: linear-gradient(180deg, #fff 0%, #f3e8df 100%);
	border: 1px solid var(--nat-line);
	box-shadow: 0 10px 22px rgba(43, 36, 34, 0.12);
	transform: rotate(var(--nat-tilt, 0deg));
	text-align: center;
	position: relative;
	z-index: 1;
}
.nat-visite-kaart:hover { z-index: 2; }
.nat-visite-spiegel {
	display: block;
	width: 56px;
	height: 56px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #fff 0%, #e8d4cc 45%, #c9b0a6 100%);
	box-shadow: inset 0 0 0 3px #f0c9cf, 0 2px 0 #b76e79;
}
.nat-visite-kaart h3 { font-size: 1.2rem; margin-bottom: 0.2em; }
.nat-visite-kaart p { margin: 0 0 8px; color: var(--nat-sage); font-size: 0.86rem; }
.nat-visite-kaart strong { color: var(--nat-rose); font-size: 1.15rem; }
.nat-folio { display: flex; flex-direction: column; gap: 18px; }
.nat-folio article {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 18px;
	align-items: center;
	background: var(--nat-cream);
	padding: 16px 20px;
	border-left: 3px solid var(--nat-rose);
}
.nat-folio-spiegel {
	width: 64px;
	height: 88px;
	border-radius: 40px 40px 8px 8px;
	background: linear-gradient(160deg, #fff 0%, #d8c4ba 55%, #b76e79 140%);
	box-shadow: inset 0 0 0 2px #fffaf6;
}
.nat-folio footer {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.92rem;
}
.nat-folio strong { color: var(--nat-rose); }
table.nat-prijs {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}
table.nat-prijs th, table.nat-prijs td {
	border-bottom: 1px solid var(--nat-line);
	padding: 12px 14px;
	text-align: left;
}
table.nat-prijs th { background: var(--nat-ink); color: #fff; }
.nat-afspraakstrook {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 32px 6vw;
	background: var(--nat-sage);
	color: #fff;
}
.nat-afspraakstrook a { color: #fff; }

.nat-inner { padding: 48px 6vw 80px; max-width: none; width: 100%; margin: 0; }
.nat-form { max-width: 32rem; }
.nat-kaart { max-width: 22rem; }
.nat-split {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr;
	gap: 32px;
	padding: 0 6vw 64px;
}
.nat-foto {
	min-height: 320px;
	background: #c9b8ae url("images/scene-a.jpg") center/cover;
	margin: 0;
}
.nat-foto-b {
	min-height: 320px;
	background: #c9b8ae url("images/scene-b.jpg") 70% 40%/cover;
	filter: saturate(0.88);
	margin: 0;
}
.nat-foto-c {
	min-height: 34vh;
	background: #c9b8ae url("images/hero.jpg") 20% 70%/cover;
	filter: sepia(0.12);
	margin: 0;
}
.nat-photogrid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.nat-photogrid article {
	min-height: 220px;
	background-size: cover;
	background-position: center;
	padding: 22px 18px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}
.nat-photogrid article:nth-child(1) { background-image: url("images/hero.jpg"); background-position: 15% 40%; }
.nat-photogrid article:nth-child(2) { background-image: url("images/scene-a.jpg"); background-position: 80% 50%; filter: saturate(0.9); }
.nat-photogrid article:nth-child(3) { background-image: url("images/scene-b.jpg"); background-position: 40% 70%; filter: sepia(0.1); }
.nat-photogrid h3 { color: #fff; }
.nat-uren { width: 100%; border-collapse: collapse; margin: 16px 0 28px; background: #fff; }
.nat-uren th, .nat-uren td { border-bottom: 1px solid var(--nat-line); padding: 10px 14px; text-align: left; }
.nat-uren th { background: var(--nat-ink); color: #fff; }
.nat-faq details { border-bottom: 1px solid var(--nat-line); padding: 12px 0; }
.nat-faq summary { cursor: pointer; font-weight: 700; }
.nat-lijst { padding-left: 1.1em; }
.nat-kaart {
	background: var(--nat-cream);
	padding: 22px;
	border-left: 4px solid var(--nat-rose);
}
.nat-form label { display: block; margin: 0 0 14px; font-size: 0.9rem; }
.nat-form input, .nat-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--nat-line);
	font-family: inherit;
}
.nat-note { background: #e8f0e4; padding: 12px 16px; margin-bottom: 16px; }
.nat-note-bad { background: #f6e0e2; }
.nat-check { display: flex; gap: 8px; align-items: flex-start; }
.nat-check input { width: auto; }
.nat-log article { padding: 22px 0; border-bottom: 1px solid var(--nat-line); }
.nat-404 { padding: 12vh 6vw; text-align: center; }

/* Footer: 1 column, dark, address first */
.nat-voet {
	background: #1f1a19;
	color: #efe6df;
	padding: 48px 6vw 28px;
	text-align: center;
}
.nat-voet a { color: #f0c9cf; }
.nat-voet address { margin: 12px 0; }
.nat-voet-nav {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 18px;
	font-size: 0.88rem;
}
.nat-koek {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-top: 2px solid var(--nat-rose);
	padding: 16px 4vw;
	display: none;
	z-index: 20;
}
.nat-koek.is-open { display: block; }

.nat-scheid {
	position: relative;
	height: 28px;
	margin: 0;
	background: linear-gradient(var(--nat-line), var(--nat-line));
	background-size: 100% 1px;
	background-position: center;
	background-repeat: no-repeat;
}
.nat-scheid i {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	background: var(--nat-rose);
	transform: rotate(45deg);
	box-shadow: 0 0 0 4px var(--nat-paper);
}
.nat-ba {
	position: relative;
	height: 52vh;
	min-height: 280px;
	overflow: hidden;
	background: #c9b8ae;
}
.nat-ba-na, .nat-ba-voor {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}
.nat-ba-na { background-image: url("images/scene-b.jpg"); }
.nat-ba-voor {
	background-image: url("images/scene-a.jpg");
	width: 52%;
	border-right: 3px solid var(--nat-rose);
}
.nat-ba input[type="range"] {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 16px;
	width: 88%;
	margin: 0 6%;
	accent-color: var(--nat-rose);
}
.nat-ba-legenda { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--nat-sage); }
.nat-citaat {
	margin: 0 0 28px;
	padding: 8px 0 8px 28px;
	border-left: 3px solid var(--nat-rose);
	max-width: none;
}
.nat-citaat p { font-family: var(--nat-display); font-size: 1.45rem; font-style: italic; line-height: 1.35; }
.nat-citaat footer { color: var(--nat-sage); font-size: 0.9rem; }
.nat-loglijst { list-style: none; margin: 0; padding: 0; counter-reset: natlog; }
.nat-loglijst li {
	position: relative;
	padding: 22px 0 22px 56px;
	border-bottom: 1px solid var(--nat-line);
	counter-increment: natlog;
}
.nat-loglijst li::before {
	content: counter(natlog, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 24px;
	font-family: var(--nat-display);
	font-size: 1.4rem;
	color: var(--nat-rose);
}

@media (max-width: 840px) {
	.nat-row, .nat-phone { display: none; }
	.nat-open { display: block; margin-left: auto; }
	.nat-stoel, .nat-split, .nat-afspraakstrook, .nat-photogrid { grid-template-columns: 1fr; display: block; }
}
