body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f5f5f5;
  position: relative;
}

footer {
  background: #F18A00; /* ÖDP-Orange */
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

header {
  background: #F18A00;
  color: white;
  padding: 1.5rem 1rem;
  display:flex;
  justify-content: center;
}

.header-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  width: 60px;
  height: auto;
}

.header-text h1 {
  margin: 0;
  font-size: 1.8rem;
}

.header-text p {
  margin: 0;
  font-size: 1rem;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 2rem 1rem;
  background: white;
}

section {
  margin-bottom: 2rem;
}

h1, h2 {
  margin-top: 0;
}

ul {
  padding-left: 1.5rem;
}

footer p {
  margin: 0;
  font-size: 0.9em;
}

/* Slogan-Kasten */
.slogan-box {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  background: #F18A00;
  color: white;
  padding: 0.8rem 1.2rem;
  font-weight: bold;
  transform: rotate(-5deg);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border-radius: 0.3rem;
  max-width: 200px;
  text-align: center;
}

.slideshow {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 2rem auto;
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 20s infinite;
}

.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 4s; }
.slideshow img:nth-child(3) { animation-delay: 8s; }
.slideshow img:nth-child(4) { animation-delay: 12s; }
.slideshow img:nth-child(5) { animation-delay: 16s; }

@keyframes fade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}


/* Auf kleinen Geräten ausblenden */
@media (max-width: 600px) {
  .slogan-box {
    display: none;
  }
  .logo {
    display: none;
  }

  .logo {
    margin-bottom: 0.5rem;
  }
}
