:root {
	--white: #fff;
	--black: #000;
	--main: #28222c;
	--pink: #f4c0af;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: var(--main);
}

h1 {
	font-size: 75px;
	font-family: 'Bree', serif;
	text-align: center;
	margin-bottom: 75px;
}

h2 {
	font-size: 20px;
	text-transform: uppercase;
}

h3 {
	font-size: 15px;
	text-transform: uppercase;
}

p {
	font-weight: 300;
}

nav {
	position: fixed;
	z-index: 900;
	width: 100%;
	padding: 30px 150px;
	background-color: var(--white);
}

nav .logo {
	width: 60px;
}

nav .logo img {
	display: block;
	width: 100%;
}

nav .burger {
	display: none;
	position: absolute;
	top: 50%;
	right: 20px;
	width: 35px;
	transform: translateY(-50%);
}

nav .burger::after {
	content: '';
	display: table;
	clear: both;
}

nav .burger span {
	display: block;
	width: 100%;
	height: 4px;
	margin-bottom: 6px;
	background-color: var(--main);
	transition: ease .5s;
}

nav .open span:nth-child(1) {
	top: 50%;
	transform: translateY( calc( -50% + 10px ) ) rotate( 45deg );
}

nav .open span:nth-child(2) {
	opacity: 0;
}

nav .open span:nth-child(3) {
	top: 50%;
	transform: translateY( calc( -50% - 10px ) ) rotate( -45deg );
}

nav ul {
	position: absolute;
	top: 50%;
	right: 150px;
	transform: translateY(-50%);
}

nav ul a {
	font-family: 'Bree', serif;
	font-size: 30px;
	color: var(--main);
	text-decoration: none;
	margin-left: 50px;
	transition: color .3s ease;
}

nav ul a:hover {
	color: var(--pink);
}

nav .show {
	transform: translateY(100%);
}

main {
	width: 100%;
	height: 100vh;
	background-color: var(--main);
}

main img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 25%;
}

section {
	width: 100%;
	padding: 100px 20%;
}

section button {
	display: block;
	cursor: pointer;
	color: var(--main);
	margin: 50px auto 0 auto;
	padding: 10px 25px;
	background-color: var(--white);
	border: 1px solid var( --main );
	border-radius: 50px;
	transition: .5s ease;
}

section button:hover {
	background-color: var(--main) !important;
	color: var(--white);
}

#prices {
	background-color: var(--pink);
}

#prices .tables {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 25px;
	margin-bottom: 25px;
}

#prices .tables .fake-table {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 15px;
}

#prices .tables .fake-table h2 {
	grid-area: span 1 / span 2;
}

#prices .tables .fake-table h3 {
	grid-area: span 1 / span 2;
}

#prices .tables table {
/*	border-collapse: separate;*/
	border-spacing: 0 15px;
	width: 100%;
}

#prices .tables td:nth-child(2) {
	text-align: right;
/*	width: 120px;*/
}

#prices .tables td {
	font-weight: 300;
}

#prices a {
	text-decoration: none;
}

#prices button {
	background-color: var(--pink);
}

#about img {
	width: 40%;
	border-radius: 50%;
	margin: 0 auto 75px auto;
	display: block;
}

#about p {
	text-align: center;
}

#gallery .gallery-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

#gallery .gallery-box .img-box {
	position: relative;
	width: calc( 33.333% - 20px );
	margin: 10px;
	overflow: hidden;
	border-radius: 50%;
	cursor: pointer;
}

#gallery .gallery-box .img-box img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	display: block;
	transform: translate(-50%,-50%);
}

#gallery .gallery-box .img-box:after {
	content: '';
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 100%;
}

#gallery .gallery-box .fullscreen {
	z-index: 998;
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,.8);
	top: 0;
	left: 0;
	border-radius: 0;
	margin: 0;
	cursor: default;
}

#gallery .gallery-box .fullscreen img {
	width: 50%;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

#gallery .gallery-box .close-img {
	z-index: 999 !important;
	position: fixed;
	z-index: 502;
	cursor: pointer;
	top: 50px;
	right: 50px;
	display: none;
	transition: transform .4s ease;
}

#gallery .gallery-box .close-img img {
	width: 30px;
}

#gallery .gallery-box .close-img:hover {
	transform: rotate(90deg);
}

#gallery .gallery-box .display {
	display: block;
}

#contact {
	text-align: center;
}

#contact a {
	display: block;
	font-weight: 300;
	text-decoration: none;
	color: var(--main);
	margin-bottom: 10px;
}

#contact p {
	margin-bottom: 10px;
}

#contact h2 {
	margin: 50px 0 10px 0;
}

.spacer {
	width: 100%;
	height: 60vh;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.spacer iframe {
	width: 100%;
	height: 100%;
}

#coiffeur-tools {
	background-image: url('../img/coiffeur-tools.jpg');
}

#barber-tools {
	background-image: url('../img/barber-tools.jpg');
}

#makeup {
	background-image: url('../img/makeup.jpg');
}

footer {
	position: relative;
	padding: 100px 150px;
}

footer p {
	float: left;
	margin-right: 25px;
}

footer a {
	text-decoration: none;
	margin-right: 25px;
}

footer img {
	position: absolute;
	width: 30px;
	top: 50%;
	right: 150px;
	transform: translateY(-50%);
}

.impressum {
	margin: 20px;
	max-width: 600px;
	padding: 10px;
	line-height: 25px;
}

.impressum .back {
	display: block;
	margin-bottom: 60px;
	color: #151515;
	transform: translateX(0);
	transition: transform .8s ease;
	cursor: pointer;
}
.impressum .back:hover {
	transform: translateX(-6px);
}

.impressum p,
.impressum a {
	color: #151515;
}

.impressum h1,
.impressum h2 {
	color: #151515;
	text-transform: uppercase;
	margin-top: 40px;
}

@media (max-width: 1650px) {
	section {
		padding: 100px 17%;
	}

}

@media (max-width: 1500px) {
	section {
		padding: 100px 12%;
	}
}

@media (max-width: 1350px) {
	main img {
		width: 35%;
	}

	section {
		padding: 100px 125px;
	}
}

@media (max-width: 1250px) {
	section {
		padding: 100px 75px;
	}

}

@media (max-width: 1150px) {
	nav {
		padding: 30px 50px;
	}

	nav ul {
		right: 50px;
	}

	section {
		padding: 100px 50px;
	}

	#prices .tables .fake-table table th {
		font-size: 17px;
	}

	#prices .tables .fake-table table td {
		font-size: 14px;
	}

	footer {
		padding: 100px 50px;
	}

	footer img {
		right: 50px;
	}

}

@media (max-width: 850px) {
	* {
		font-size: 14px;
	}

	h1 {
		font-size: 50px;
	}

	nav {
		padding: 0;
		height: auto;
	}

	nav .logo {
		width: 100%;
		padding: 20px;
		background-color: var(--white);
	}

	nav .logo img {
		width: 50px;
	}

	nav .burger {
		display: block;
	}

	nav ul {
		z-index: -1;
		background-color: var(--white);
		width: 100%;
		padding: 20px 20px;
		top: calc( -100% - 90px );
		left: 0;
		transform: none;
		transition: transform ease .5s;
	}

	nav ul a {
		display: block;
		width: 100%;
		margin: 0;
		padding-bottom: 20px;
	}

	main img {
		width: 55%;
	}

	section {
		padding: 75px 20px;
	}

	#prices .tables {
		grid-template-columns: 1fr;
	}

	#prices .tables .fake-table table {
		width: 100%;
		padding: 0;
	}

	#prices .tables .fake-table table:nth-child(even) {
		padding: 0;
	}

	#gallery .gallery-box .img-box {
		width: calc( 50% - 10px );
	}

	#gallery .gallery-box .img-box:nth-child(even) {
		margin-left: 0;
	}

	#gallery .gallery-box .img-box:nth-child(odd) {
		margin-right: 0;
	}

	#gallery .gallery-box .fullscreen {
		width: 100%;
	}

	#gallery .gallery-box .fullscreen img {
		width: 75%;
	}

	#gallery .gallery-box .close-img {
		top: 20px;
		right: 20px;
	}

	.spacer {
		background-attachment: scroll;
	}

}

