@import url('https://fonts.googleapis.com/css2?family=Faustina:ital,wght@0,300..800;1,300..800&display=swap');

/*! reset */

input, textarea, button, select, ul, li, h1, h2, a, p {
	background-color: transparent;
	border: 0;
	color: inherit;
	border-collapse: collapse;
	list-style: none;
	margin: 0;
	outline: none;
	padding: 0;
	text-decoration: none;
}

/*! general */

:root {
	font-size: 62,5%;
	font-size: 1rem;
}

* {
	-webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 border-collapse: collapse;
	box-sizing: border-box;
	font-family: 'Faustina', serif;
	font-size: 1rem;
	line-height: 100%;
}

html, body {
	height: 100%;
	margin: 0;
 min-height: 100%;
 padding: 0px;
	position: relative;
 width: 100%;
}

img { max-width: 100%; }
b { font-size: inherit; }

h1 {
	font-size: clamp(1.5rem, 0.25rem + 5vw, 3rem);
	margin-bottom: 25px;
}

h2 {
	font-size: clamp(1.5rem, 0.25rem + 3vw, 2.25rem);
	margin-bottom: 25px;
}

h3 {
	font-size: clamp(1.5rem, 0.875rem + 2vw, 2rem);
	margin-bottom: 25px;
}

p {
	font-size: clamp(1.25rem, 0.9375rem + 1vw, 1.5rem);
	line-height: clamp(1.5rem, 0.875rem + 2vw, 2rem);
	hyphens: auto;
}

/* HEADER */

.header-wrapper {
	background-image: url('/src/img/header-2.webp');
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	text-align: center;
	width: 100%;
}

.header-wrapper .logo {
	top: 50px;
	position: absolute;
	transform: translate(-50%);
	width: 250px;
}

/* Content */

.content-wrapper {
	line-height: 2rem;
	margin: 0px auto;
	padding: 50px 25px;
	max-width: 900px;
	width: 100%;
}

.lead {
	font-size: clamp(1.5rem, 0.25rem + 4vw, 2.5rem);
	text-align: center;
	font-weight: bold;
	line-height: clamp(2rem, 0.75rem + 4vw, 3rem);
}

.portraits {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 25px;
	padding: 100px 0px;
}

.portraits img {
	border-top-left-radius: 15px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 15px;
}

.portraits div {
	text-align: center;
}

.portraits h2 {
	margin-top: 50px;
	margin-bottom: 25px;
}

.wir-spielen {
	margin: 0px auto;
	max-width: 500px;
	text-align: center;
}

.hauptinstrumente {
	margin-top: 50px;
}

.spezialinstrumente {
	margin-top: 50px;
}

.social,
.kontakt,
.formular {
	margin-top: 100px;
	text-align: center;
}

form {
	margin: 0px auto;
	max-width: 400px;
}

input,textarea {
	border: 2px solid rgb(230, 230, 230);
	border-top-left-radius: 15px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 15px;
	font-size: clamp(1.25rem, 0.9375rem + 1vw, 1.5rem);
	padding: 15px;
	margin-bottom: 15px;
	width: 100%;
}

input[name="honigtopf"] {
	display: none;
}

textarea {
	min-height: 150px;
	resize: vertical;
}

button {
	background-color: black;
	border-top-left-radius: 15px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 15px;
	color: white;
	cursor: pointer;
	font-size: clamp(1.25rem, 0.9375rem + 1vw, 1.5rem);
	padding: 15px;
	min-width: 200px;
}

@media (pointer: coarse) {

	.header-wrapper {
		background-attachment: unset;
	}

	@media (orientation : landscape) {

		.header-wrapper .logo {
			top: 25px;
			width: 125px;
		}

	}

}

@media only screen and (max-width: 650px) {

	.lead {
		text-align: left;
	}

	.portraits {
		display: block;
	}

	.portraits div {
		margin-bottom: 50px;
	}

}