@charset "UTF-8";
@import url("reset.css");
@import url("fonts.css");


:root {
	--skewGrootte: 5vw;
	--skewRotatie: -5deg;
	--roze: #cc3366;
}

* {
	font-family: 'arimo';
}

html,
body,
.container {
	width: 100%;
	height: 100%;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 0rem;
}

nav {
	position: fixed;
	/* background: #000; */
	top: 0px;
	height: 3rem;
	width: 100%;
	color: #fff;
	z-index: 2;
}

.top {
	position: absolute;
	width: 100%;
	height: 10rem;
	z-index: 2;
	overflow: hidden;
}
.top::after {
	position: absolute;
	content: '';
	width: 200%;
	height: 8rem;
	left: 0px;
	background-color: #000;
    background-image: url(../images/rozediamanten.svg);
    background-repeat: repeat-x;
    background-size: 6rem;
    background-position: 50% 95%;
	rotate: -5deg;
    transform-origin: bottom left;
}

h2 {
    font-size: 2rem;
    font-weight: 100;
    width: 100%;
    margin: 0 auto;
    padding-block: 0.5rem;
	text-align: center;
    background: #000;
    color: var(--roze);
    border-top: 5px dotted var(--roze);
    border-bottom: 5px dotted var(--roze);
	position: relative;
}

h2::before,
h2::after {
	position: absolute;
	content: '';
    width: 3rem;
    height: 3rem;
    top: 0px;
	background: url(../images/rozediamantenkel.svg);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

h2::before {
    left: 0.5rem;
}

h2::after {
    right: 0.5rem;
}

nav input {
	position: absolute;
	width: 0px;
	height: 0px;
	overflow: hidden;
}

label.mobileswitch {
    padding: 1rem;
    display: inline-block;
    cursor: pointer;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px #000;
}

nav ul {
	display: block;
	position: absolute;
	background: #000c;
	height: 0px;
	overflow: hidden;
}

nav input:checked + ul {
	height: auto;
}

nav ul li a {
	padding: 1rem;
	display: block;
	color: #fff;
	text-decoration: none;
	transition: 250ms background;
}

nav ul li a:hover {
	background: #fff8;
}

section {
	display: block;
	min-height: calc(100vh + 1rem);
	position: relative;
	padding-block: 3rem;
}

section::after {
	position: absolute;
	content: '';
	height: 4rem;
	width: 100%;
    bottom: 0px;
    left: 0px;
    background-color: #000;
    background-image: url(../images/rozediamanten.svg);
    background-repeat: repeat-x;
    background-size: 5rem;
    background-position: 50% 50%;
    box-shadow: 0px 0px 2rem 2rem #000;
}

.visual {
    display: grid;
    place-content: center;
	justify-items: center;
	height: calc(100vh + 4rem);
	background-size: cover;
	background-position: 50% 50%;
	background: #000;
	isolation: isolate;
}

img.logo {
    width: 70vw;
    filter: drop-shadow(1px 1px 1px #fff8) drop-shadow(-1px 1px 1px #fff8) drop-shadow(1px -1px 1px #fff8) drop-shadow(-1px -1px 1px #fff8) drop-shadow(0px 0px 5px #fff);
    margin-bottom: 10vh;
}

img.background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	pointer-events: none;
	z-index: -1;
	opacity: 0.5;
    object-fit: cover;
    object-position: center;
}

a.transparentbutton {
	position: relative;
	display: block;
	text-decoration: none;
	color: #fff;
	background: #0004;
	border: 1px solid #000;
	padding: 1.5rem;
	border-radius: 2rem;
	margin: 1rem;
	font-size: 1.25rem;
	text-align: center;
	transition: 250ms color, 250ms background, 250ms border;
}
a.transparentbutton::before {
	position: absolute;
    content: '';
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border: 1px solid #fff;
    border-radius: 4rem;
    top: -2px;
    left: -2px;
}
a.transparentbutton:hover {
    color: #000;
    background: #fff;
    border: 1px solid #fff;
}

form {
    width: fit-content;
    margin: 2rem auto;
    background: #0008;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #888;
}

form p {
	color: #fff;
	font-size: 1.25rem;
}

td {
	display: table-row;
    color: #fff;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

td.center {
	text-align: center;
}

input,
textarea {
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #444;
    background: #fffa;
    color: #000;
    font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

input[type=submit] {
	padding: 1rem 2rem;
	margin: 0;
}

textarea {
	height: 10rem;
}

@media (min-width: 600px) {
	html {
		scroll-padding-top: 3rem;
	}

	h2 {
		width: fit-content;
		padding: 0.5rem 10rem;
		background: linear-gradient(90deg, transparent 0%, black 6rem, black calc(100% - 6rem), transparent 100%);
	}
	
	h2::before {
		left: 6rem;
	}

	h2::after {
		right: 6rem;
	}

	section {
		min-height: calc(100vh + 3rem);
	}
	
	.top::after {
		height: 10rem;
	    background-image: url(../images/rozediamanten.png);
		background-size: 10rem;
	}
	
	td {
		display: table-cell;
	}
}