.dark-theme {
	--primary-color: #809477;
	--primary-color-highlight: #ffbd59;
	--secondary-color: #485e0f;
	--body-background: #fafafa;
	--text-color: #222416;

	/*
	--footer-end: #fafafa;
	--primary-color: #222416;
	--primary-color-highlight: #809477;
	--secondary-color: #ffbd59;
	--body-background: #222416;
	--text-color: #fafafa;
	--footer-end: #222416;
*/
}

.light-theme {
	--primary-color: #809477;
	--primary-color-highlight: #ffbd59;
	--secondary-color: #485e0f;
	--body-background: #fafafa;
	--text-color: #222416;

	--footer-end: #fafafa;
}

:root {
	--container-width: 1200px;
	--container-gap-y: 2rem;
}

#imprint h1:first-of-type,
#data-privacy h1:first-of-type,
#termine,
#kontakt {
	padding-top: 100px;
	margin-bottom: 0;
}

#wir h1:first-of-type,
#media h1:first-of-type {
	margin-top: 100px;
}

html {
	scroll-behavior: smooth;
	transition: all 500ms;
}

@font-face {
	font-family: 'Pathway';
	src: url('/PathwayGothicOne-Regular.ttf') format('trueType');
	font-display: swap;
}

body {
	background-color: var(--body-background);
	margin: 0;
	color: var(--text-color);
	transition: all 200ms;
	font-family: 'Pathway', Arial;
}

.unset {
	all: unset !important;
}

.hide-nav-menu {
	top: -100% !important;
}

textarea,
input label,
button {
	font-size: 14pt;
	font-family: 'Pathway', Arial;
	padding: 1rem 2rem;
	border-radius: 10px;
}

img {
	max-width: 100%;
}

h1 {
	text-shadow: 1px 1px 5px gray;
	transition: all 200ms;
	font-size: 3.5rem;
}

h2 {
	font-size: 2.5rem;
}

h3 {
	font-size: 1.8rem;
}

p,
td {
	color: var(--text-color);
	transition: all 200ms;
	font-size: 16pt;
}

.grid {
	display: grid;
}

.flex {
	display: flex;
	gap: 1rem;
}

.flex_imp {
	display: flex !important;
}

.items-center {
	justify-content: center;
}

.grid-cols-2 {
	grid-template-columns: 1fr 1fr;

	@media screen and (max-width: 1000px) {
		grid-template-columns: 1fr;
	}
}

.col-span-2 {
	grid-column: span 2 / span 2;

	@media screen and (max-width: 1000px) {
		grid-column: span 1 / span 1;
	}
}

.h-full {
	height: 100%;
}

.items-center {
	align-items: center;
}

.m-auto {
	margin: auto;
}

.text-center {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.hidden-mobile {
	@media screen and (max-width: 1000px) {
		display: none;
	}
}

.hidden {
	display: none;
}

.page {
	padding: 1rem 2rem;

	@media screen and (max-width: 1000px) {
		padding: 1rem;
	}
}

.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
}

h1,
h2,
h3 {
	@media screen and (max-width: 1000px) {
		hyphens: auto;
		word-break: break-word;
		text-align: center;
		padding: 0 1rem;
	}
}

a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: bold;
	transition: all 500ms;
	&:hover {
		opacity: 0.8;
		text-decoration: underline;
		color: #ffbd59 !important;
		border-color: #ffbd59 !important;
	}
}

button {
	background-color: var(--primary-color);
	outline: none;
	border: solid 1px white;
	color: white;
	transition: all 500ms;

	@media screen and (min-width: 1000px) {
		&:hover {
			cursor: pointer;
			opacity: 0.8;
			color: #ffbd59;
		}
	}
}

table {
	width: 100%;
	table-layout: fixed;

	tr:nth-child(even) {
		background-color: var(--primary-color-highlight);
	}

	td {
		hyphens: auto;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		white-space: normal;
		word-wrap: break-word;
	}

	> tr {
		border-bottom: solid white 2px;
	}

	thead {
		font-size: 18pt;
		font-weight: bold;
	}
}

input {
	padding: 0.5rem 1rem;
	border-radius: 25px;
	outline: none;
	border: none;
}

.justify-center {
	justify-content: center;
}
