body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.hero {
  width: 100%;
  height: 100vh;                  /* Vollbild */
  background-size: contain;        /* <--- ganze Bild sichtbar */
  background-position: center;     /* zentriert */
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;         /* horizontal zentrieren */
  align-items: center;             /* vertikal zentrieren */
  transition: background-image 0.5s ease;
}

.hero-link {
  color: white;                    /* je nach Bild anpassen */
  font-size: 2rem;
  text-decoration: none;
  background-color: rgba(0,0,0,0.5); /* halbtransparent für Lesbarkeit */
  padding: 15px 30px;
  border-radius: 8px;
  text-align: center;
}