/* style.css */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /*justify-content: center; /* vertikal zentrieren */
  align-items: center;     /* horizontal zentrieren */
  position: relative;
  z-index: 1;
  color: white; /* Textfarbe auf Hintergrund sichtbar */
  text-align: center;
}

.slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  animation: slide 10s infinite;
  z-index: -1;
  
}
.menu {
  position: fixed;
  top: 10px;
  right: 10px; /* rechts neben dem Sprachswitcher */
  width: 150px;
  z-index: 3;
  font-family: Arial, sans-serif;
}

/* Icon Style */
.menu-icon {
  font-size: 24px;
  cursor: pointer;
  user-select: none;
  color: white;
}

/* Menü unsichtbar machen */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
  background: rgba(0,0,0,0.7);
  border-radius: 4px;
  position: absolute;
  top: 30px;
  right: 0;
  display: none;  /* zuerst versteckt */
  min-width: 120px;
}

/* Links im Menü */
.menu-list li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

/* Hover Effekt auf Links */
.menu-list li a:hover {
  background-color: rgba(255,255,255,0.2);
}

/* Menü anzeigen wenn Menü oder Icon hovert */
.menu:hover .menu-list {
  display: block;
}
.home {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.4);
	font-size: 30px;
	color : white;
	bottom : 20px;
}
.impressum {
	position: fixed;
	background-color: rgba(0, 0, 0, 0.4);
	bottom : 20px;
	max-height: 300px;   /* Maximale Höhe */
	overflow-y: auto;    /* Scrollbar bei vertikalem Überlauf */
	padding: 10px;       /* Optional, für besseren Abstand zum Rand */
	color: white;
	max-width: 60%;
}
.headline {
	background-color: rgba(0, 0, 0, 0.2);
	color : white;
}
.welcomeText {
	background-color: rgba(0, 0, 0, 0.2);
	margin-top: 20px;
	color : white;
}
.input-name {
	font-size: 20px;
	width: 250px;
}
.input-email {
	font-size: 20px;
	width: 250px;
}
.message {
	height: 200px;
	font-size: 14px;
	width: 600px;
}
/* Optional: leichtes Verschieben für den Effekt */
@keyframes slide {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}