body{background:#f8f9fa}
a { text-decoration: none; }
li { list-style-type: none; }
.hero {
  position: relative; /* Wichtig für die Positionierung des Videos */
  background-color: #565c38;
  min-height: 50vh;
  overflow: hidden; /* Schneidet Video-Überhänge sauber ab */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Textfarbe auf Weiß setzen */
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Verhält sich wie background-size: cover */
  z-index: 1;
}

/* Ihr linearer Farbverlauf als halbdurchsichtiges Overlay über dem Video */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Liegt über dem Video */
}
.hero-content {
  position: relative;
  z-index: 3; /* Liegt über dem Overlay */
  text-align: center;
  padding: 20px;
}

.card { border:0;border-radius:1rem}
.hupfer:hover{transform:translateY(-4px);transition:.2s }

.menu_color { color: silver!important; }
.menu_color:hover { color: white !important; }
.dropdown-item { background-color:#565c38!important; }