.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url("/images/hero-fitness.jpg");
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-content {
  max-width: 600px;
  color: #fff;
}

.badge {
  background-color: orange;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}

.hero-content .highlight {
  color: #3b82f6; /* blue */
  font-weight: 800;
  background: linear-gradient(90deg, #8a2be2, #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: orange;
  color: white;
}

.btn-primary:hover {
  background-color: #ff9900;
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    background-position: center;
    align-items: flex-start;
    justify-content: center;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    padding: 0 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
  margin-top: -5rem; /* optional: leichtes nach oben ziehen */
}


  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-content .highlight {
  background: linear-gradient(90deg, #5ec6ff, #7ec8ff); /* helleres Blau */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



  .hero-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
