/* === Hintergrund & Grundlayout === */
body {
  margin: 0;
  font-family: "Impact", "Arial Black", sans-serif;
  background: linear-gradient(45deg, #ff00ff, #00ffea, #ffff00);
  background-size: 400% 400%;
  animation: bgMove 12s infinite linear;
  color: #fff;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Header & Banner === */
header {
  text-align: center;
  padding: 0;
  border-bottom: 5px solid #000;
  background: #000;
}

.banner {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: saturate(300%) contrast(200%);
}

/* === Navigation === */
nav {
  background: #000;
  text-align: center;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav ul li {
  position: relative;
}
nav ul li a {
  display: block;
  padding: 15px 20px;
  color: #ff00ff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
nav ul li a:hover {
  background: #00ffea;
  color: #000;
}

/* === Main Content === */
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  background: rgba(0,0,0,0.6);
  border: 5px solid #ff0;
  box-shadow: 0 0 20px #00ffea;
}

main img.bandfoto {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  border: 5px solid #ff00ff;
  box-shadow: 0 0 15px #00ffea;
}

/* === Headings === */
h1 {
  font-size: 28px;
  text-transform: uppercase;
  background: #ff0;
  color: #000;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 10px;
  transform: rotate(-2deg);
}

/* === Footer === */
footer {
  background: #000;
  color: #ff00ff;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  border-top: 5px solid #ff0;
}

/* === Responsive Anpassungen === */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
  main {
    margin: 10px;
  }
  h1 {
    font-size: 22px;
  }
}
