.hero-section {
  padding: 0;
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-color: #0b093a;
  background-image: url('../assets/heroBreakout.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.95);
}

/* Menü auf der linken Seite */
.hero-menu {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 27%;
  min-width:200px; /* ✅ etwas breiter */
  background: linear-gradient(90deg, rgba(20, 44, 100, 0.9) 0%, rgba(20, 44, 100, 0.0) 100%);
  padding-left: 10%;
  z-index: 50;
  display: flex;
  align-items: center;
  transition: width 0.3s ease;
}

.hero-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 80%;
}

.hero-menu li {
  width: 100%;
  height: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index:250;
}

/* Link */
.hero-menu a {
  display: block;
  width: 100%;
  color: white;
  text-decoration: none;
  text-align: center;
  line-height: 100px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.hero-menu li:hover,
.hero-menu li.active {
  width: calc(100% + 40px);
  min-width: 240px;
  background: linear-gradient(-90deg, rgba(20, 44, 100, 0.9) 0%, rgba(20, 44, 100, 0.0) 100%);
}

.hero-menu li:hover a,
.hero-menu li.active a  {
  font-size: 1.2em;
}

