/* Grundlayout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: system-ui, sans-serif;
  color: #fff;
}

/* Parallax Hintergrund */
.hero {
  background-image: url('../bilder/normal/CIMG2458.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  filter: brightness(1.3);
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #fefefe;
}

p {
  white-space: pre-line;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }
}

