/* Allgemeine Stile */
.body {
	margin: 0;
	padding: 0;
	font-family: Arial, sans-serif;
	background: linear-gradient(to bottom right, #333, #555); /* Seitenhintergrund */
	color: #fff;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow-y: auto; /* Aktiviert Scrollen */
}

.container {
	flex: 1; /* Flexibles Layout */
	padding: 20px;
}

/* Menü-Styling */
.menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 1000;
	display: flex;
	justify-content: space-between; /* Menü-Button und Links ausrichten */
	align-items: center;
	padding: 10px 20px;
}

.menu-button {
	width: 30px;
	height: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	margin-left: auto; /* Menü-Button nach rechts ausrichten */
}

.menu-button div {
	width: 100%;
	height: 4px;
	background-color: #ffcc00;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-links {
	display: none;
	position: absolute;
	top: 50px;
	right: 10px;
	background-color: rgba(0, 0, 0, 0.8);
	padding: 1rem;
	border-radius: 10px;
	text-align: right;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
	min-width: 220px; /* Dynamische Mindestbreite */
}

.menu-links a {
	display: block;
	margin-bottom: 1rem;
	color: #ffcc00;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease;
}

.menu-links a:hover {
	color: #fff;
}

/* Menü-Button für mobile Geräte */
.menu-button {
	width: 40px;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.menu-links {
	display: none; /* Menü ausblenden */
}

.menu.open .menu-links {
	display: block; /* Menü anzeigen, wenn geöffnet */
}

.container {
	padding: 20px;
	text-align: center; /* Textzentrierung für kleinere Bildschirme */
}

.logo {
	font-size: 2rem;
	margin-bottom: 10px;
}

.coming-soon {
	font-size: 1.2rem;
	color: #ffcc00;
}

/* Offenes Menü */
.menu.open .menu-links {
	display: block;
}

/* Galerie-Container */
.gallery-container {
	display: grid; /* CSS-Grid für Spalten */
	grid-template-columns: repeat(2, 1fr); /* Zwei Spalten */
	gap: 20px; /* Abstand zwischen den Buttons */
	margin-top: 20px;
	padding: 20px;
	justify-content: center; /* Zentriert das Grid */
}

/* Einzelne Galerie-Elemente */
.gallery-item {
	overflow: hidden;
	position: relative;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styling für die Buttons */
.category-button {
	display: block; /* Blockdarstellung für vertikale Ausrichtung */
	padding: 10px 20px; /* Innenabstand */
	background-color: #d89b00; /* Primärfarbe */
	color: #fff; /* Textfarbe */
	text-decoration: none; /* Entfernt den Unterstrich */
	font-size: 1rem;
	text-align: center;
	border-radius: 5px; /* Runde Ecken */
	transition: background-color 0.3s ease; /* Sanfter Hover-Effekt */
	width: 100%; /* Volle Breite des Containers */
	max-width: 400px; /* Begrenzung der Breite */
	box-sizing: border-box; /* Boxmodell */
	margin: 10px 0; /* Abstand oben und unten für jeden Button */
}

/* Hover-Effekt für Buttons */
.category-button:hover {
	background-color: #b37800; /* Etwas dunklere Farbe beim Hover */
}

/* Bereits besuchte Links behalten die gleiche Farbe */
.category-button:visited {
	color: #fff; /* Textfarbe bleibt gleich */
	background-color: #d89b00; /* Hintergrundfarbe bleibt gleich */
}

/* Bilder */
.gallery-image {
	width: 100%;
	height: auto;
	display: block;
	cursor: pointer; /* Zeigt an, dass das Bild klickbar ist */
	transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
	transform: scale(1.1); /* Zoom-Effekt beim Hover */
}

/* Back-Button */
.back-button {
	display: inline-block;
	margin: 20px auto;
	padding: 10px 20px;
	background-color: #d89b00;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
	text-align: center;
}

.back-button:hover {
	background-color: #b37800;
}

/* Footer */
footer {
	text-align: center;
	padding: 10px 20px;
	background: rgba(0, 0, 0, 0.8);
	color: #ccc;
	margin-top: auto;
	width: 100%;
}

/* Zusätzliche Stile für spezifische Elemente */
h1 {
	font-size: 2rem;
	text-align: center;
	margin-top: 20px;
	color: #ffcc00;
}

p {
	font-size: 1rem;
	line-height: 1.5;
}

/* Menü-Button Hover */
.menu-button:hover div {
	background-color: #fff;
}

.email-button-blackgold {
	display: inline-block;
	padding: 10px 20px;
	background-color: #000000;
	color: #FFD700;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
}

.logo {
	text-align: center;
	margin: 40px 0 20px 0;
}

.logo img {
	max-width: 250px;
	height: auto;
	display: inline-block;
}