::-ms-expand {
	display: none;
}
:root {
	--header-text: #2F6B6A;
	--subline-elements: #CE7049;
	--background: #FAF5EF;
	--graphic-elements-2: #EFD9C3;
	--white: #FFFFFF;
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
*,
::before,
::after {
	box-sizing: border-box;
}
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
	touch-action: manipulation;
}
body {
	font-family: 'Poppins', sans-serif;
	background-color: var(--background);
	color: var(--header-text);
	line-height: 1.6;
	overflow-x: hidden;
}
button:focus,
input:focus,
select:focus,
textarea:focus,
[contenteditable]:focus {
	outline: 0;
}
footer {
	text-align: center;
	padding: 1rem 2rem;
	font-size: 0.9rem;
	color: var(--header-text);
	opacity: 0.7;
}
h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--header-text);
	margin-bottom: 1rem;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	position: relative;
	z-index: 1000;
}
html.waiting body {
	opacity: .2;
	transition: 200ms;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
}
main {
	padding: 2rem;
}
nav a {
	text-decoration: none;
	color: var(--header-text);
	font-weight: 600;
	position: relative;
	padding-bottom: 5px;
}
nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--subline-elements);
	transition: width 0.3s ease;
}
nav a:hover::after {
	width: 100%;
}
table {
	border-collapse: collapse;
}
ul.event-types {
	list-style: none;
	padding: 0;
}
ul.event-types li {
	background: var(--white);
	border: 1px solid var(--graphic-elements-2);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1rem;
	transition: box-shadow 0.2s ease;
}
ul.event-types li:hover {
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.bullet-points {
	margin: 2rem 0;
	text-align: left;
	display: inline-block;
}
.bullet-points span {
	color: var(--subline-elements);
	margin-right: 0.75rem;
	font-weight: 700;
}
.cta-button {
	display: inline-block;
	background-color: var(--subline-elements);
	color: var(--white);
	padding: 0.8rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button2 {
	display: inline-block;
	background-color: var(--header-text);
	color: var(--white);
	padding: 0.8rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	margin-top: 1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-button2:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.flex-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-evenly;
	align-items: stretch;
	background: var(--graphic-elements-2);
	border-radius: 50px;
}
.flex-container > div {
	padding: 0.8rem 2.5rem;
	margin: 50px;
	max-width: 400px;
	background-color: var(--subline-elements);
	color: var(--white);
	font-weight: 300;
	border-radius: 50px;
	text-align: center;
}
.graphic-element {
	position: absolute;
	border-radius: 50%;
	z-index: 1;
	opacity: 0.2;
}
.shape1 {
	width: 25vw;
	height: 25vw;
	max-width: 300px;
	max-height: 300px;
	background-color: var(--graphic-elements-2);
	top: 15%;
	left: 10%;
}
.shape2 {
	width: 35vw;
	height: 35vw;
	max-width: 450px;
	max-height: 450px;
	background-color: var(--subline-elements);
	opacity: 0.3;
	bottom: 10%;
	right: 5%;
}
.subline {
	font-size: clamp(1.8rem, 2.5vw, 1.25rem);
	color: var(--subline-elements);
	max-width: 600px;
	margin: 0 auto 2rem;
	font-weight: 200;
}
.timeslot {
	display: block;
	background-color: var(--white);
	color: var(--header-text);
	padding: 0.6rem 1rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	border: 2px solid var(--graphic-elements-2);
	transition: all 0.2s ease;
}
.timeslot:hover {
	background-color: var(--header-text);
	color: var(--white);
	border-color: var(--header-text);
	transform: translateY(-2px);
}
.timeslots {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}
@media (max-width:768px) {
	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 70%;
		height: 100vh;
		background-color: var(--graphic-elements-2);
		transition: right 0.3s ease-in-out;
		padding-top: 6rem;
	}
	nav a {
		font-size: 1.5rem;
	}
}