/* ALGEMEEN */
:root {
	--primary-color: #BDA26A;
	--secondary-color: #ffffff;
	--light-gray: #ddd;
	--dark-gray: #888;

	--space-gap: 2rem;
	--space-section: 8rem;

	--border: solid 3px var(--primary-color);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-timeline: 5s;
}
body {
	background-color: #000;
	color: #fff;
}
.container {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	padding: 0 5vw;
}
.sleutelpatroon {
	margin-bottom: 1rem;
}
#lijn .streep {
	height: 2px;
	background-color: #222;
}
@media (max-width: 1000px) {
	:root {
		--space-gap: 1.5rem;
		--space-section: 6rem;
	}
}
@media (max-width: 600px) {
	:root {
		--space-gap: 1rem;
		--space-section: 6rem;

		--border: solid 2px var(--primary-color);
	}
}


/* TYPOGRAFIE */
@font-face {
    font-family: 'Inria Serif';
    src: url('assets/font/InriaSerif/InriaSerif-Bold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/font/Inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/font/Inter/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('assets/font/Inter/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
:root {
	--h1: 600 4.5rem/125% "Inria Serif", serif;
	--h2: 600 3.25rem/125% "Inria Serif", serif;
	--h3: 600 2rem/125% "Inria Serif", serif;
	--p: 400 1.125rem/175% "Inter", sans-serif;
	--ps: 400 1rem/175% "Inter", sans-serif;
}
h1 {
	font: var(--h1);
}
h2 {
	font: var(--h2);
}
h3 {
	font: var(--h3);
}
p {
	font: var(--p);
	color: var(--light-gray);
	margin: 1rem 0 0;
}
a {
	font: var(--p);
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	color: inherit;
}
.page h1 {
	margin: 0 0 2rem;
}
.page h2 {
	margin: 2rem 0;
}
.page p {
	margin: 0 0 5rem;
	font: 400 1.125rem/200% 'Inter', sans-serif;
}
@media (max-width: 600px) {
	:root {
		--h1: 600 3.25rem/125% 'Inria Serif', serif;
		--h2: 600 2.75rem/125% 'Inria Serif', serif;
		--h3: 600 1.5rem/125% 'Inria Serif', serif;
		--p: 400 1rem/175% 'Inter', sans-serif;
		--ps: 400 1rem/175% 'Inter', sans-serif;
	}
}


/* BUTTONS */
.btn-primary {
	padding: .9rem 2rem;
	border-left: var(--border);
	border-bottom: var(--border);
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	width: fit-content;
	transition: .3s;
}
.btn-primary:hover {
	transform: scale(1.06);
}
.btn-primary.small {
	transform: scale(.8);
	margin: 0 -1.2rem;
}
.btn-primary.small:hover {
	transform: scale(.86);
}
.afspraak-button {
	position: fixed;
	bottom: var(--space-gap);
	right: var(--space-gap);
	z-index: 1000;
	background: linear-gradient(-175deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
	font: var(--p);
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	border-top: none;
	border-right: none;
	cursor: pointer;
}

.afspraak-button:hover {
	transform: scale(1.06);
}
@media (max-width: 525px) {
	.btn-primary {
		width: 100%;
	}
	.afspraak-button {
		font-size: 0 !important;
		width: fit-content !important;
		padding: 1.25rem .75rem 1.25rem 1.25rem;
		background: #000;
		margin: 0 !important;
	}
}


/* HEADER */
header.primary {
	position: absolute;
	width: 100%;
	padding: 3rem 0;
	color: #fff;
}
header.primary .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	max-width: 1500px;
}
header.primary .logo {
	width: 257px;
}
header.primary nav.primary {
	justify-self: center;
}
header.primary nav.primary ul {
	display: flex;
	gap: 3rem;
	list-style: none;
}
header.primary nav.primary ul a {
	padding: .75rem 0;
	transition: .3s;
	font-weight: 400;
	text-transform: unset;
}
header.primary nav.primary ul a:hover {
	padding: .75rem 0;
	border-bottom: solid 1px var(--primary-color);
}
header.primary nav.primary ul .btn-primary {
	display: none;
}
.hamburger {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem 1rem;
	z-index: 1001;
	position: relative;
}
.hamburger span {
	width: 25px;
	height: 3px;
	background-color: #fff;
	margin: 3px 0;
	transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-6px, 6px);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(45deg) translate(-7px, -6px);
}
@media (max-width: 1225px) {
	header.primary .container {
		display: grid;
		grid-template-columns: auto auto;
	}
	header.primary .logo {
		width: auto;
	}
	.group {
		display: flex;
		align-items: center;
		gap: 2rem;
	}
	.hamburger {
		display: flex;
		justify-self: end;
	}
	header.primary .logo {
		z-index: 1001;
		position: relative;
	}
	header.primary .btn-primary {
		z-index: 1001;
		position: relative;
	}
	header.primary nav.primary {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.6);
		backdrop-filter: blur(15px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s ease, visibility 0.4s ease;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1000;
	}
	header.primary nav.primary.active {
		opacity: 1;
		visibility: visible;
	}
	header.primary nav.primary ul {
		flex-direction: column;
		gap: 2rem;
		align-items: center;
		margin: 0;
		padding: 0;
	}
	header.primary nav.primary ul li a {
		font-size: 1.5rem;
		font-weight: 600;
	}
	header.primary nav.primary ul .btn-primary {
		padding: .9rem 2rem;
		border-left: var(--border);
		border-bottom: var(--border);
		color: var(--primary-color);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: .75rem;
		width: fit-content;
		transition: .3s;
		font: var(--p);
		font-weight: 600;
		text-decoration: none;
		text-transform: uppercase;
	}
}
@media (max-width: 600px) {
	header.primary .btn-primary {
		display: none;
	}
}


/* HERO */
#hero {
	height: 100vh;
	min-height: 750px;
	display: flex;
	align-items: center;
	color: #fff;
	background: 
		linear-gradient(to right, rgba(0,0,0,.95), rgba(0,0,0,.25)),
		linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0)),
		url('assets/img/Kapsalon-HisHamKapsalon-1200.webp'),
		url('assets/img/Kapsalon-HisHamKapsalon.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
#hero .container {
	max-width: 1500px;
}
#hero .text {
	max-width: 525px;
	margin-top: 2rem;
}
#hero .text p {
	margin: 1.5rem 0 2.5rem;
	color: var(--light-gray);
}
@media (max-width: 600px) {
	#hero {
		background: 
			linear-gradient(to right, rgba(0,0,0,.8), rgba(0,0,0,.6)),
			linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, 0)),
			url('assets/img/Kapsalon-HisHamKapsalon-900.webp'),
			url('assets/img/Kapsalon-HisHamKapsalon.png');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
	}
}


/* BEHANDELINGEN */
#behandelingen {
	background-color: #000;
	color: #fff;
	padding: 8rem 0;
}
#behandelingen .text {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}
#behandelingen .grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: var(--space-gap);
	margin-top: 4rem;
}
#behandelingen .grid .grid-item {
	position: relative;
}
#behandelingen .grid .grid-item .overlay::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, .4) 100%);
}
#behandelingen .grid .grid-item .img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
	position: relative;
	z-index: 0;
}
#behandelingen .grid .grid-item.split-top {
	display: grid;
	gap: var(--space-gap);
	grid-template-rows: 1fr auto;
}
#behandelingen .grid .grid-item.split-bottom {
	display: grid;
	gap: var(--space-gap);
	grid-template-rows: auto 1fr;
}
#behandelingen .grid .grid-item.split-bottom .img {
	opacity: .6;
}
#behandelingen .grid .grid-item .deco-top {
	border-left: var(--border);
	border-bottom: var(--border);
	display: block;
	z-index: 1;
}
#behandelingen .grid .grid-item .deco-bottom {
	border-right: var(--border);
	border-top: var(--border);
	display: block;
	z-index: 1;
}
#behandelingen .grid .grid-item h3 {
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	z-index: 2;
}
#behandelingen .grid .grid-item.split h3 {
	font: 600 1.5rem/125% 'Inria Serif', serif;
	bottom: .75rem;
}
#behandelingen .grid .grid-item-a {
	grid-column: 1 / 3;
}
#behandelingen .grid .grid-item-b {
	grid-column: 3 / 5;
}
#behandelingen .grid .grid-item-c {
	grid-column: 5 / 6;
}
#behandelingen .grid .grid-item-d {
	grid-column: 1 / 2;
}
#behandelingen .grid .grid-item-e {
	grid-column: 2 / 4;
}
#behandelingen .grid .grid-item-f {
	grid-column: 4 / 6;
}
/* FLIP CARDS */
.flip-card {
	background-color: #000;
	perspective: 1000px;
	height: 100%;
	cursor: pointer;
}
.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.8s;
	transform-style: preserve-3d;
	aspect-ratio: 3/2;
}
.flip-card.flipped .flip-card-inner {
	transform: rotateY(180deg);
}
@media (hover: hover) and (pointer: fine) {
	.flip-card:hover .flip-card-inner {
		transform: rotateY(180deg);
	}
}
.flip-card-front, .flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.flip-card-back {
	transform: rotateY(180deg);
	background-image: url('assets/vector/sleutelpatroon/Sleutelpatroon-Doorzichtig-HishamKapsalon.webp');
	background-size: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	z-index: 50;
	padding: var(--space-gap);
}
.flip-card-back h3 {
	position: initial !important;
}
.flip-indicator {
	position: absolute;
	top: var(--space-gap);
	right: var(--space-gap);
	color: var(--primary-color);
	opacity: 0.8;
	z-index: 3;
	animation: pulse 2s infinite;	
}
@keyframes pulse {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}
@media (max-width: 900px) {
	#behandelingen .grid {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	}
	#behandelingen .grid .grid-item .img {
		aspect-ratio: 1/1;
	}
	#behandelingen .grid .grid-item-a {
		grid-column: 1 / 5;
		grid-row: 1 / 2;
	}
	#behandelingen .grid .grid-item-b {
		grid-column: 1 / 4;
		grid-row: 2 / 3;
	}
	#behandelingen .grid .grid-item-c {
		grid-column: 5 / 7;
		grid-row: 1 / 2;
	}
	#behandelingen .grid .grid-item-d {
		grid-column: 1 / 3;
	}
	#behandelingen .grid .grid-item-e {
		grid-column: 4 / 7;
		grid-row: 2 / 3;
	}
	#behandelingen .grid .grid-item-f {
		grid-column: 3 / 7;
	}
	.flip-card-inner {
		aspect-ratio: 1/1;
	}
}
@media (max-width: 600px) {
	#behandelingen .grid {
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	}
	#behandelingen .grid .grid-item .img {
		aspect-ratio: 1/1;
	}
	#behandelingen .grid .grid-item-a {
		grid-column: 1 / 5;
		grid-row: 1 / 2;
	}
	#behandelingen .grid .grid-item-b {
		grid-column: 1 / 7;
		grid-row: 2 / 3;
	}
	#behandelingen .grid .grid-item-c {
		grid-column: 5 / 7;
		grid-row: 1 / 2;
	}
	#behandelingen .grid .grid-item-d {
		grid-column: 1 / 3;
		grid-row: 4 / 5;
	}
	#behandelingen .grid .grid-item-e {
		grid-column: 1 / 7;
		grid-row: 3 / 4;
	}
	#behandelingen .grid .grid-item-f {
		grid-column: 3 / 7;
	}
	.flip-card-inner {
		aspect-ratio: 1/1;
	}

}


/* OVER HISHAM */
#over-hisham {
	background-color: #000;
	color: #fff;
	padding: var(--space-section) 0;
}
#over-hisham .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
}
#over-hisham .img {
	position: relative;
	padding: 0 0 2rem 2rem;
}
#over-hisham .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
}
#over-hisham .img::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 2rem;
	left: 2rem;
	background: linear-gradient(0deg,rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, .4) 100%);
	pointer-events: none;
}
#over-hisham .img .deco-1 {
	display: inline-block;
	height: 10rem;
	width: 10rem;
	border-left: var(--border);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#over-hisham .img .deco-2 {
	display: inline-block;
	height: 10rem;
	width: 10rem;
	border-left: var(--border);
	border-bottom: var(--border);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
#over-hisham .text {
	padding: 4rem 0 2.5rem;
}
#over-hisham .text .text-group {
	display: flex;
	align-items: center;
	gap: 3rem;
	width: 100%;
	margin-top: 3rem;
}
#over-hisham .text .text-group .text-item {
	text-align: center;
}
#over-hisham .text .text-group .text-item h3 {
	font: 600 3rem/125% 'Inria Serif', serif;
	margin-bottom: -1rem;
}
@media (max-width: 1100px) {
	#over-hisham .container {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
	#over-hisham .text {
		order: -1;
		padding: 0;
	}
}
@media (max-width: 800px) {
	#over-hisham .img .deco-1 {
		display: inline-block;
		height: 10rem;
		width: 10rem;
		border-left: solid 0 var(--primary-color);
		border-bottom: solid 3px var(--primary-color);
		position: absolute;
		top: initial;
		left: initial;
		right: 0;
		bottom: 0;
		z-index: 2;
	}
}


/* PRODUCTEN */
#producten {
	
	padding: var(--space-section) 0;
}
#producten .text-group {
	display: flex;
	align-items: end;
	gap: 4rem;
}
#producten .product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: var(--space-gap);
	margin-top: 4rem;
}
#producten .product-grid .product-item {
	background-image: url('assets/vector/sleutelpatroon/Sleutelpatroon-Doorzichtig-HishamKapsalon.webp');
	background-size: 3rem;
	padding: 2rem;
	position: relative;
	text-align: center;
}
#producten .product-grid .product-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: calc(50% - 3rem);
	display: block;
	height: 3px;
	width: 6rem;
	border-bottom: var(--border);
}
#producten .product-grid .product-item img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	margin-bottom: 1rem;
}
#producten .product-grid .product-item h3 {
	font: 600 1.5rem/125% 'Inria Serif', serif;
}
@media (max-width: 1100px) {
	#producten .product-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
	#producten .product-grid .product-item:last-of-type {
		grid-column: 1 / 4;
	}
	#producten .product-grid .product-item:last-of-type img {
		max-width: 225px;
	}
}
@media (max-width: 800px) {
	#producten .text-group {
		flex-direction: column;
		align-items: start;
		gap: 0;
	}
	#producten .product-grid {
		grid-template-columns: 1fr 1fr;
	}
	#producten .product-grid .product-item:last-of-type {
		grid-column: 2 / 3;
	}
	#producten .product-grid .product-item:last-of-type img {
		max-width: initial;
	}
}


/* CONTACT */
#contact {
	background: 
		linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%),
		url('assets/vector/Kaart-KapperHisham.webp');
	background-size: 95rem;
	background-position: center center;
	padding: 2rem 0 4rem;
}
#contact .text {
	display: inline-flex;
	flex-direction: column;
	gap: var(--space-gap);
	padding: 3rem;
	background-color: rgba(0, 0, 0, .6);
	position: relative;
}
#contact .text .deco-1 {
	display: inline-block;
	height: 10rem;
	width: 10rem;
	border-left: var(--border);
	border-top: var(--border);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
#contact .text .deco-2 {
	display: inline-block;
	height: 10rem;
	width: 10rem;
	border-left: var(--border);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}
#contact .text .openingstijden h3 {
	margin-bottom: 1.5rem;
}
#contact .text .openingstijden p {
	margin: 0.75rem 0;
	clear: both;
}
#contact .text .openingstijden dl {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#contact .text .openingstijden dl .dag {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-gap);
}
#contact .text .openingstijden dl .dag dt, dd {
	font: var(--p);
	margin: 0;
}
#contact .text .openingstijden dl .dag dd {
	  font-weight: bold;
}
#contact .text .openingstijden dl .dag.vandaag {
  color: #bfa35b;
}
#contact .text .contactgegevens {
	margin-top: 2rem;
}
#contact .text .contactgegevens h3 {
	margin-bottom: 1.5rem;
}
#contact .text .contactgegevens .contact-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
#contact .text .contactgegevens .contact-item img {
	flex-shrink: 0;
	margin-top: 0.2rem;
}
#contact .text .contactgegevens .contact-item p {
	margin: 0;
	color: #fff;
}
@media (max-width: 550px) {
	#contact {
		background-position: 70% 3rem;
		padding: 2rem 0 20rem;
	}
}


/* FOOTER */
footer {
	padding: 2rem 0;
	border-top: solid 1px #111;
}
footer .container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: space-between;
	align-items: center;
	max-width: 1500px;
	gap: 1rem;
}
footer p, footer a {
	margin: 0;
	font-size: var(--ps);
	color: var(--dark-gray);
	text-transform: initial;
	font-weight: initial;
}
footer .kho {
	place-self: center;
	margin: -2rem 0;
	height: 100%;
	object-fit: contain;
}
footer .footer-links {
	place-self: end;
	display: flex;
	gap: 1rem;
}
/* Responsive footer */
@media (max-width: 800px) {
	footer .container {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
		justify-items: center;
		text-align: center;
		gap: 1.5rem;
	}
	footer .kho {
		margin: 0;
		height: auto;
	}
	footer .footer-links {
		place-self: center;
		justify-content: center;
	}
}
@media (max-width: 600px) {
	footer {
		padding: 1.5rem 0;
	}
	footer .container {
		gap: 1.5rem;
	}
	footer .kho img {
		width: 100px;
		height: auto;
	}
}


/* ALGEMENE VOORWAARDEN PAGINA */
#algemene-voorwaarden .container {
	padding-top: 15rem;
	padding-bottom: 5rem;
	max-width: 900px;
}
#algemene-voorwaarden .sleutelpatroon {
	display: block;
}
#algemene-voorwaarden h1 {
	margin-bottom: 2rem;
}
#algemene-voorwaarden .intro {
	margin-bottom: 4rem;
	font-size: 1.25rem;
}
#algemene-voorwaarden .voorwaarden-sectie {
	margin-bottom: 4rem;
}
#algemene-voorwaarden .voorwaarden-sectie h2 {
	margin-bottom: 1.5rem;
	font-size: 2rem;
}
#algemene-voorwaarden .voorwaarden-sectie p {
	margin-bottom: 1.5rem;
	line-height: 200%;
	color: var(--light-gray);
}
#algemene-voorwaarden .voorwaarden-sectie ul {
	margin: 1.5rem 0 1.5rem 2rem;
	color: var(--light-gray);
}
#algemene-voorwaarden .voorwaarden-sectie ul li {
	margin-bottom: 0.5rem;
	line-height: 175%;
	font: var(--p);
}
@media (max-width: 600px) {
	#algemene-voorwaarden .container {
		padding-top: 12rem;
	}
	#algemene-voorwaarden .intro {
		font-size: 1.125rem;
	}
	#algemene-voorwaarden .voorwaarden-sectie h2 {
		font-size: 1.75rem;
	}
}



