/* =====================================================================
   Kapsalon Sharinda — Thema "Warm & persoonlijk"
   Laag bovenop styles.css. Verandert kleur, typografie en sfeer.
   Inhoud, agenda, kaart en JS blijven ongemoeid.
   ===================================================================== */

:root {
	--ivory:        #f7f2e9;  /* achtergrond */
	--ivory-card:   #fdfaf3;  /* kaarten / lichte vlakken */
	--ivory-soft:   #efe7d6;  /* zachte randen / hover */
	--espresso:     #2e2620;  /* koppen + donkere tekst */
	--espresso-mid: #574b3f;  /* lopende tekst */
	--brass:        #b08542;  /* accent: messing/goud */
	--brass-deep:   #8c6628;  /* accent hover / nadruk */
	--green:        #3f5e50;  /* secundair: diep botanisch groen */
	--green-deep:   #2b4034;  /* footer / donkere vlakken */
	--line:         rgba(46, 38, 32, 0.14);
	--shadow:       0 14px 40px rgba(46, 38, 32, 0.12);

	--font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body:    "Inter", "Open Sans", system-ui, sans-serif;
}

/* ---------- Basis & typografie ---------- */
html,
body {
	background-color: var(--ivory);
	transition: background-color 0.2s linear;
}

body {
	color: var(--espresso-mid);
	font-family: var(--font-body);
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}

p,
.p-large,
.p-small,
li,
td,
th,
.testimonial-author,
.btn-solid-lg,
.btn-solid-reg,
.btn-outline-lg,
.btn-outline-reg {
	font-family: var(--font-body);
}

p,
li {
	color: var(--espresso-mid);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	color: var(--espresso);
	font-weight: 600;
	letter-spacing: -0.01em;
}

strong {
	color: var(--espresso);
}

a {
	color: var(--brass);
}
a:hover {
	color: var(--brass-deep);
}
a.green,
.navbar-custom .nav-item .nav-link.active,
.navbar-custom .nav-item .nav-link.active:hover {
	color: #14bf98 !important;
}

/* ---------- Sfeer-achtergrond (statisch & lichtgewicht) ----------
   Eén keer schilderen, geen animatie en geen scroll-afhankelijke
   herverf -> vloeiend scrollen, vooral op mobiel. */
:root {
	--scroll: 0;
}
/* Warme laag */
body::before {
	background:
		radial-gradient(38vmax 34vmax at 12% 18%, rgba(176, 133, 66, 0.22), transparent 66%),
		radial-gradient(34vmax 30vmax at 50% 40%, rgba(217, 164, 65, 0.16), transparent 66%),
		radial-gradient(36vmax 32vmax at 86% 24%, rgba(181, 115, 106, 0.18), transparent 66%) !important;
	background-size: 100% 100% !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	animation: none !important;
	transform: none !important;
	transition: none !important;
	will-change: auto !important;
	opacity: 1 !important;
}
/* Koele/groene laag */
body::after {
	background:
		radial-gradient(36vmax 32vmax at 88% 82%, rgba(63, 94, 80, 0.20), transparent 66%),
		radial-gradient(32vmax 30vmax at 46% 62%, rgba(110, 139, 123, 0.15), transparent 66%),
		radial-gradient(34vmax 30vmax at 14% 90%, rgba(122, 90, 110, 0.15), transparent 66%) !important;
	background-size: 100% 100% !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	animation: none !important;
	transform: none !important;
	transition: none !important;
	will-change: auto !important;
	opacity: 1 !important;
}

/* ---------- Kleurlagen per sectie: zachte parallax bij scrollen ---------- */
/* js/scripts.js verschuift deze lagen op basis van scrollpositie (alleen desktop). */
.section-depth .section-depth-layer {
	display: none;
}
@media (min-width: 1200px) {
	.section-depth .section-depth-layer {
		display: block;
	}
}
.section-depth .layer-a {
	background: radial-gradient(circle at 22% 32%, rgba(176, 133, 66, 0.16), transparent 50%);
}
.section-depth .layer-b {
	background: radial-gradient(circle at 80% 68%, rgba(63, 94, 80, 0.14), transparent 48%);
}
.section-depth .layer-c {
	background: linear-gradient(125deg, rgba(255, 250, 243, 0.16), rgba(255, 250, 243, 0));
}
@media (prefers-reduced-motion: reduce) {
	.section-depth .section-depth-layer {
		display: none;
	}
}

/* ---------- Navigatie ---------- */
.navbar-custom {
	background-color: var(--espresso);
	box-shadow: 0 6px 24px rgba(46, 38, 32, 0.18);
}
.navbar-custom .nav-item .nav-link {
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--ivory);
}
@media (hover: hover) and (pointer: fine) {
	.navbar-custom .nav-item .nav-link:hover {
		color: #8de6d3;
	}
}

/* ---------- Header / hero ---------- */
/* Responsieve achtergrond: mobiel laadt een lichte, kleine afbeelding. */
.header {
	background:
		linear-gradient(rgba(46, 38, 32, 0.42), rgba(46, 38, 32, 0.66)),
		url('../images/header-background-mobile.jpg') center center / cover no-repeat;
	box-shadow: var(--shadow);
}
@media (min-width: 768px) {
	.header {
		background:
			linear-gradient(rgba(46, 38, 32, 0.42), rgba(46, 38, 32, 0.66)),
			url('../images/header-background-1280.jpg') center center / cover no-repeat;
	}
}
.header h1 {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--ivory);
	letter-spacing: -0.015em;
	line-height: 1.05;
}
.header .p-heading,
.header .p-large {
	font-family: var(--font-body);
	color: var(--ivory-soft);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.9rem;
}

/* ---------- Knoppen ---------- */
.btn-solid-lg,
.btn-solid-reg {
	background-color: var(--brass);
	border-color: var(--brass);
	border-radius: 999px;
	color: #fff;
	font-family: var(--font-body);
	font-weight: 700;
	letter-spacing: 0.12em;
	box-shadow: 0 8px 22px rgba(176, 133, 66, 0.30);
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-solid-lg:hover,
.btn-solid-reg:hover,
.cards-2 .btn-solid-reg:hover {
	background-color: var(--brass-deep);
	border-color: var(--brass-deep);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(140, 102, 40, 0.34);
}

/* ---------- Eyebrow / sectietitel ---------- */
.section-title {
	display: inline-block;
	color: var(--brass);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
.section-title::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 2px;
	margin: 0.5rem auto 0;
	background-color: var(--brass);
}
.basic-1 .section-title::after {
	margin-left: 0;
	margin-right: 0;
}

/* Eyebrow gecentreerd bij Resultaten en boven Prijslijst */
#prijslijst .section-title,
.filter .section-title {
	display: block;
	text-align: center;
}
#prijslijst .section-title::after,
.filter .section-title::after {
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Kaarten: Over ons + Prijslijst ---------- */
#intro .overons-table-responsive,
#intro-collega .overons-table-responsive,
#prijslijst .table-responsive {
	background-color: var(--ivory-card);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
	border-radius: 1rem;
}

/* Tabelkoppen: warme band i.p.v. Bootstrap-lichtblauw */
.table-primary,
.table-primary > th,
thead.table-primary th,
#prijslijst .table thead th,
#intro .overons-table-responsive thead.table-primary th,
#intro-collega .overons-table-responsive thead.table-primary th {
	background-color: var(--green) !important;
	color: var(--ivory) !important;
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: 0.02em;
	border: none;
}

/* Tabelcellen */
#prijslijst .table,
#prijslijst .table tbody td,
#intro .overons-table-responsive .table,
#intro .overons-table-responsive tbody td,
#intro-collega .overons-table-responsive .table,
#intro-collega .overons-table-responsive tbody td {
	background-color: var(--ivory-card);
	color: var(--espresso-mid);
}
#intro .overons-table-responsive tbody td,
#intro-collega .overons-table-responsive tbody td {
	line-height: 1.6;
}
.table.table-hover tbody tr:hover td {
	background-color: var(--ivory-soft);
}

/* Eigenaresse-/collega-namen */
#intro .overons-table-responsive h2,
#intro-collega .overons-table-responsive h2 {
	font-family: var(--font-display);
	color: var(--espresso);
}

/* Prijslijst als verfijnde "menukaart": stippellijn + messing prijs */
#prijslijst .table tbody td {
	border-bottom: 1px dotted var(--line);
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
}
#prijslijst .table tbody tr:last-child td {
	border-bottom: none;
}
#prijslijst .table tbody td:last-child {
	color: var(--brass-deep);
	font-weight: 700;
	white-space: nowrap;
}
#prijslijst h1,
#prijslijst h2 {
	font-family: var(--font-display);
	color: var(--espresso);
}
#prijslijst h2 {
	color: var(--brass);
	font-style: italic;
	font-weight: 500;
}

/* Italic notities in prijslijst (was Bootstrap-blauw) */
#prijslijst .text-info,
.text-info.font-italic {
	color: var(--brass-deep) !important;
}

/* Hover-lift kaarten (desktop) — focusrand warm i.p.v. groen */
@media (min-width: 992px) {
	#prijslijst .table-responsive:hover,
	#intro .overons-table-responsive:hover,
	#intro-collega .overons-table-responsive:hover {
		box-shadow: 0 20px 48px rgba(46, 38, 32, 0.16);
	}
}

/* ---------- Resultaten / galerij-filters ---------- */
.filter h2 {
	font-family: var(--font-display);
}
.filter .button-group a {
	font-family: var(--font-body);
	background-color: var(--ivory-soft);
	color: var(--espresso-mid);
	border-radius: 999px;
}
.filter .button-group a:hover,
.filter .button-group a.is-checked {
	background-color: var(--brass);
	color: #fff;
}

/* ---------- Onze week ---------- */
#onzeweek h2 {
	font-family: var(--font-display);
	color: var(--espresso);
}

/* ---------- Contact ---------- */
#contact h2,
#contact h3 {
	font-family: var(--font-display);
}
#contact .list-unstyled i {
	color: var(--brass);
}

/* ---------- Footer ---------- */
.footer {
	background-color: var(--green-deep);
	box-shadow: 0 10px 34px rgba(46, 38, 32, 0.18);
}
.footer h4,
.footer .footer-col h4,
.footer .container h4,
body .footer h4 {
	font-family: var(--font-display);
	letter-spacing: 0.02em;
}

/* ---------- Vloeiendere scroll-onthulling ---------- */
.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right,
.scroll-reveal-in,
.slide-in-left,
.slide-in-right {
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
	will-change: opacity, transform;
}
.scroll-reveal {
	transform: translateY(2.25rem) scale(0.99);
}
.scroll-reveal.reveal-in-view {
	transform: translateY(0) scale(1);
}
.slide-in-left {
	transform: translateX(-3.5rem) scale(0.99);
}
.slide-in-right {
	transform: translateX(3.5rem) scale(0.99);
}
.slide-in-left.reveal-in-view,
.slide-in-right.reveal-in-view {
	transform: translateX(0) scale(1);
}
/* Mooiere, langere stagger */
.scroll-reveal-delay-1 { transition-delay: 0.08s !important; }
.scroll-reveal-delay-2 { transition-delay: 0.18s !important; }
.scroll-reveal-delay-3 { transition-delay: 0.28s !important; }

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal,
	.scroll-reveal-left,
	.scroll-reveal-right,
	.scroll-reveal-in,
	.slide-in-left,
	.slide-in-right {
		transition: none !important;
		transform: none !important;
		opacity: 1 !important;
	}
}

/* ---------- Header op desktop: gecentreerd, niet edge-to-edge ---------- */
@media (min-width: 992px) {
	.header {
		max-width: 1180px;
		margin-left: auto;
		margin-right: auto;
		border-radius: 1.75rem;
	}
	.header .header-content {
		padding-top: 9rem;
		padding-bottom: 4rem;
	}
}

/* ---------- Scroll-knoppen rechtsonder (omhoog / omlaag) ---------- */
/* Oude template-knop verbergen; we gebruiken een nette eigen set. */
a.back-to-top {
	display: none !important;
}

.scroll-nav {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	opacity: 0;
	transform: translateY(0.75rem) scale(0.92);
	pointer-events: none;
	transition:
		opacity 0.55s cubic-bezier(0.65, 0, 0.35, 1),
		transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}
.scroll-nav.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.scroll-nav__btn {
	width: 2.9rem;
	height: 2.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: 999px;
	background-color: var(--brass);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(46, 38, 32, 0.25);
	transition:
		background-color 0.45s cubic-bezier(0.65, 0, 0.35, 1),
		transform 0.45s cubic-bezier(0.65, 0, 0.35, 1),
		opacity 0.45s cubic-bezier(0.65, 0, 0.35, 1),
		box-shadow 0.45s cubic-bezier(0.65, 0, 0.35, 1);
	-webkit-tap-highlight-color: transparent;
}
.scroll-nav__btn:hover:not(:disabled) {
	background-color: var(--brass-deep);
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(46, 38, 32, 0.32);
}
.scroll-nav__btn:active:not(:disabled) {
	transform: translateY(0) scale(0.94);
	box-shadow: 0 6px 14px rgba(46, 38, 32, 0.22);
	transition-duration: 0.15s;
}
.scroll-nav__btn:disabled {
	opacity: 0.35;
	cursor: default;
	transform: none;
	box-shadow: 0 4px 12px rgba(46, 38, 32, 0.12);
}
.scroll-nav__btn svg {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
}
.scroll-nav__btn:focus-visible {
	outline: 3px solid var(--espresso);
	outline-offset: 2px;
}

/* ---------- Toegankelijkheid: zichtbare focus ---------- */
a:focus-visible,
.btn-solid-lg:focus-visible,
.btn-solid-reg:focus-visible,
.nav-link:focus-visible,
.filter .button-group a:focus-visible {
	outline: 3px solid var(--brass);
	outline-offset: 3px;
}
