* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  height: 100%;
}

/* Blurred Background */
.bg-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../Sommer.png') center/cover no-repeat;
  filter: blur(8px);
  z-index: -1;
}

/* Wrapper für den scharfen Inhalt */
.content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Panels für Startscreen und Slideshow */
.content-panel {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  margin: 1rem 0;
  text-align: center;
}

/* Text im Startscreen */
.small-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #333;
}

.content {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  border-radius: 15px;
  max-width: 600px;
  margin: auto;
}

/* Slideshow */
.slide-container {
  position: relative;
  overflow: hidden;
  max-height: 200px;
  transition: max-height 0.3s ease;
}

.slide {
  display: none;
  font-size: 1.25rem;
  color: #333;
  padding: 1rem;
}

.slide.active {
  display: block;
}

/* Buttons */
.btn-custom {
  background-color: #FF69B4;
  color: #fff;
  border: none;
}

.btn-custom:hover {
  background-color: #FF1493;
}

/* Navigation Buttons */
.navigation button {
  margin: 0 0.5rem;
}

/* Verstecken-Klasse */
.hidden {
  display: none;
}

/* Footer */
footer p {
  color: #555;
  margin-top: 1rem;
}

/* Responsive Anpassungen */
@media (max-width: 576px) {
  .content-panel {
    padding: 1rem;
    border-radius: 8px;
  }
  h1 {
    font-size: 1.75rem;
  }
  .slide {
    font-size: 1rem;
  }
  .navigation button {
    width: 45%;
    margin: 0.25rem 0;
  }
}
