html {
	font-family: 'Outfit', sans-serif;
	font: 100%/5, 'Outfit', sans-serif;
	scroll-behavior: smooth;
	overflow-x: hidden;
	background-color: #fff8e7;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.outfit-<uniquifier> {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}

body {
	padding: 0 20px;
	background-color: #fff8e7;
	overflow-x: hidden;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	background-color: #fff8e7;
	position: relative;
}

.nav-links {
	display: flex;
	gap: 20px;
	align-items: center;
}

.nav-links p {
	margin: 0;
	color: black;
}

.nav-links a {
	color: black;
	text-decoration: none;
}

.nav-links a:hover{
	color: #edc9af;
}

.toggle-button {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 18px;
	cursor: pointer;
}

.toggle-button .bar {
	height: 3px;
	width: 100%;
	background-color: black;
	border-radius: 5px;
}

.header {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 3em;
	padding-top: 50px;
	line-height: 150%;
	padding-bottom: 100px;
	position: relative;
}

.header li:first-child {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.header li:first-child img {
	margin-bottom: 30px;
}

.header li:first-child p {
	margin-top: 20px;
	padding-top: 0;
}

.header::after {
	content: "♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥ ♥";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: #edc9af;
	font-size: 18px;
	letter-spacing: 12px;
	pointer-events: none;
	user-select: none;
	z-index: 10;
}

.header p {
	font-size: 50px;
}

.header p a{
	font-size: 30px;
	text-decoration: none;
	color: black;
	background-color: #edc9af;
	border-radius: 5px;
	padding: 5px 15px;
	display: inline-block;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.video {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-top: 50px;
	margin-bottom: 100px;
	display: flex;
	justify-content: center;
}

.video iframe {
	width: 100%;
	max-width: 800px;
	height: 450px;
}

.by-martina {
	display: inline-block;
	line-height: 1.2;
	margin-top: 10px;
}

.by-martina a{
	padding-top: 0;
}

.hidden {
	opacity: 0;
	transition: all 1s;
}

.show {
	opacity: 1;
}

.slideshow-container {
	position: relative;
	max-width: 100%;
	width: 100%;
	height: auto;
	min-height: 400px;
  max-height:800px
	overflow: hidden;
}

.slideshow-container img {
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.slideshow-container .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 2s ease;
}

.slideshow-container .slide.active {
	position: relative;
	opacity: 1;
}

.team {
	list-style: none;
	display: grid;
	grid-template-columns: 50% 50%;
	padding-bottom: 100px;
}

.team h1 {
	font-size: 100px;
	text-align: center;
}

.dasteam {
	list-style: none;
	display: grid;
	grid-template-columns: 50% 50%;
	padding-bottom: 50px;
	align-items: center;
}

.dasteam h1 {
	font-size: 100px;
	text-align: center;
}

.dasteam li {
	padding: 0 !important;
}

.dasteam li:nth-child(1){
	order: 1;
}

.dasteam li:nth-child(2){
	order: 2;
}

.section {
	margin-bottom: 100px;
}

.grid-container {
	display: grid;
	grid-template-columns: 25% 25% 25% 25%;
	gap: 10px;
	width: 100%;
	max-width: 1200px;
}

.image-container {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

.image-container p {
	opacity: 1;
}

.image-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease;
	border: 5px solid #edc9af;
}

.image-container .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6);
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.3s ease;
	list-style: none;
	pointer-events: none;
}

.martina {
	display: grid;
	grid-template-columns: 50% 50%;
	padding: 80px;
}

ul.liste {
	list-style: none;
	padding-left: 0;
	line-height: 2.5;
}

ul.liste li:first-child{
	list-style: none;
	padding-left: 0;
}

ul.liste li {
	position: relative;
	padding-left: 24px;
}

ul.liste li::before{
	content: "★";
	color: #edc9af;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 16px;
}

.image-container:hover img {
	opacity: 0.3;
}

.image-container:hover .overlay {
	opacity: 1;
}

.hover-text-list {
	color: white;
	list-style-type: decimal;
	font-size: 1.2em;
	text-align: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

li .slideshow-container {
	min-height: 300px;
}

.hochzeit {
	list-style: none;
	display: grid;
	grid-template-columns: 50% 50%;
	grid-gap: 3em;
	padding: 80px 0;
	line-height: 150%;
	background-color: #edc9af;
	background-image:
		linear-gradient(to bottom, #fff8e7 0%, rgba(255,248,231,0) 20%),
		linear-gradient(to top, #fff8e7 0%, rgba(255,248,231,0) 20%),
		radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: top, bottom, top;
	background-size: 100% 150px, 100% 150px, 20px 20px;
	align-items: center;
}

.hochzeit section {
	padding-bottom: 30px;
}

.hochzeit h1 {
	font-size: 100px;
	text-align: center;
	margin-bottom: 30px;
}

.hochzeit p {
	font-size: 30px;
	line-height: 1.5;
	padding: 0 20px;
}

.hochzeit a {
	border-bottom: 1px solid #bfa086;
	color: #8b7355;
}

.anfahrt {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 3em;
	padding: 80px 0;
	font-size: 30px;
	align-items: center;
}

.anfahrt iframe {
	width: 100%;
	height: 400px;
	border: 0;
}

.anfahrt h1 {
	font-size: 100px;
	text-align: center;
	margin-bottom: 30px;
}

.anfahrt a {
	color: #edc9af;
}s

.anfahrt p {
	text-align: center;
	line-height: 1.8;
}

.anfahrt li:nth-child(1) {
	order: 2;
}

.anfahrt li:nth-child(2) {
	order: 1;
}

.gallery {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 2em;
	padding-bottom: 50px;
}

.gallery img {
	width: 100%;
}

.produkte img {
	width: 100%;
}

.produkte {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 2em;
	padding-bottom: 50px;
}

.daten {
	list-style: none;
	color: #edc9af;
	text-decoration: none;
	padding-bottom: 100px;
	text-align: center;
}

.daten a {
	text-decoration: none;
	color: #edc9af;
}

/* TABLET */
@media(max-width: 820px) {
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 20px;
		background-color: #fff;
		padding: 10px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.nav-links.active {
		display: flex;
	}

	.toggle-button {
		display: flex;
	}

	.header {
		grid-template-columns: 1fr;
		padding-bottom: 100px;
	}

	.header p {
		font-size: 40px;
	}

	.header p a {
		font-size: 25px;
	}

	.header::after {
		bottom: 0;
		opacity: 1;
	}

	.video {
		margin-top: 30px;
		margin-bottom: 50px;
	}

	.video iframe {
		height: 350px;
	}

	.team {
		grid-template-columns: 1fr;
	}

	.team h1 {
		font-size: 50px;
	}

	.dasteam {
		grid-template-columns: 1fr;
	}

	.dasteam img {
		width: 100%;
	}

	.dasteam h1 {
		font-size: 50px;
		padding-bottom: 20px;
	}

	.hochzeit {
		grid-template-columns: 1fr;
		padding: 50px 20px;
	}

	.hochzeit h1 {
		font-size: 50px;
	}

	.hochzeit p {
		font-size: 22px;
		padding: 0;
	}

	.hochzeit .slideshow-container {
		height: auto;
		min-height: 300px;
	}

	.grid-container {
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}

	.anfahrt {
		grid-template-columns: 1fr;
		padding: 50px 0;
	}

	.anfahrt h1 {
		font-size: 50px;
	}

	.anfahrt iframe {
		height: 300px;
	}

	.gallery {
		grid-template-columns: 1fr 1fr;
	}

	.produkte {
		grid-template-columns: 1fr 1fr;
	}

	.produkte img {
		border: 5px solid #edc9af;
	}

	.image-container .overlay {
		visibility: hidden;
	}
}

/* MOBILE */
@media(max-width: 576px) {
	body {
		padding: 0 15px;
	}
	
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 20px;
		background-color: #fff;
		padding: 10px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		z-index: 1000;
	}

	.nav-links.active {
		display: flex;
	}

	.toggle-button {
		display: flex;
	}

	.header {
		grid-template-columns: 1fr;
		padding-bottom: 80px;
		padding-left: 0;
	}

	.header li:first-child img {
		width: 200px;
		height: auto;
	}

	.header p {
		font-size: 20px;
		padding-top: 10px;
	}

	.header p a {
		font-size: 16px;
		padding: 8px 12px;
	}

	.header::after {
		opacity: 1;
		font-size: 14px;
		letter-spacing: 8px;
	}

	.video {
		margin-top: 20px;
		margin-bottom: 30px;
	}

	.video iframe {
		height: 250px;
	}

	.team {
		grid-template-columns: 1fr;
	}

	.team h1 {
		font-size: 35px;
	}

	.dasteam {
		grid-template-columns: 1fr;
		padding-bottom: 30px;
	}

	.dasteam img {
		width: 100%;
	}

	.dasteam h1 {
		font-size: 35px;
		padding-bottom: 15px;
	}

	.hochzeit {
		grid-template-columns: 1fr;
		padding: 40px 15px;
	}

	.hochzeit h1 {
		font-size: 35px;
		margin-bottom: 20px;
	}

	.hochzeit p {
		font-size: 16px;
		line-height: 1.6;
		padding: 0;
	}

	.hochzeit .slideshow-container {
		height: auto;
		min-height: 250px;
	}

	.header .slideshow-container {
		height: auto;
		min-height: 300px;
	}

	.grid-container {
		grid-template-columns: 1fr;
		width: 100%;
	}

	.anfahrt {
		grid-template-columns: 1fr;
		padding: 40px 0;
		font-size: 18px;
	}

	.anfahrt h1 {
		font-size: 35px;
		margin-bottom: 20px;
	}

	.anfahrt iframe {
		height: 250px;
	}

	.anfahrt p {
		font-size: 18px;
	}

	.gallery {
		grid-template-columns: 1fr 1fr;
		grid-gap: 1em;
	}

	.produkte {
		grid-template-columns: 1fr 1fr;
		grid-gap: 1em;
	}

	.image-container .overlay {
		visibility: hidden;
	}

	.martina {
		grid-template-columns: 1fr;
		padding: 40px 20px;
	}

	.liste {
		font-size: 16px;
	}

	.martina h1 {
		font-size: 30px;
	}

	.by-martina {
		font-size: 1.5rem;
		margin-top: 5px;
	}

	.slideshow-container {
		height: auto;
	}

	.daten {
		padding-bottom: 80px;
	}
}