.hero-section {
  position: relative;
  width: 100vw;
  max-width: 100%;
  //margin-left: calc(50% - 50vw);
  //margin-right: calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: -13%;
  width: 120%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  background: linear-gradient(90deg, rgba(20,24,32,0.80) 0%, rgba(20,24,32,0.30) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-glass-effect {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: #fff;
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero-content .highlight {
  background: #99e9d4;
  color: #000;
  padding: 0.15em 0.45em;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1.09em;
  letter-spacing: 0.01em;
  margin-bottom: 2.5rem;
  display: inline-block;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
  color: #dbeffd;
  margin-bottom: 2.5rem;
}

.hero-btn {
  display: inline-block;
  padding: 0.72em 2.1em;
  background: #99e9d4;
  color: #000;
  border-radius: 100px;
  font-weight: bold;
  font-size: 1.16em;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px 0 rgba(30,167,247,0.13);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero-btn:hover {
  background: #1ea7f7;
  color: #fff;
}



/* Animierter Verlauf für Über Uns Hero */
.about-hero {
  background: linear-gradient(120deg, #e0f8ff 0%, #f4fff8 60%, #e4fcfa 100%);
  background-size: 400% 400%;
  animation: about-bg-move 22s ease-in-out infinite;
  padding: 5rem 1rem 3rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@keyframes about-bg-move {
  0%   { background-position: 0% 70%; }
  25%  { background-position: 100% 50%; }
  50%  { background-position: 70% 100%; }
  75%  { background-position: 50% 0%; }
  100% { background-position: 0% 70%; }
}
.about-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.about-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.13;
  margin-bottom: 1.1rem;
  color: #1a232d;
}
.highlight-gradient {
  background: linear-gradient(90deg, #00e6a8, #1ea7f7, #b6fadc, #00e6a8 80%);
  background-size: 300% 100%;
  background-position: 0% 50%;
  font-weight: 800;
  font-size: 1.07em;
  border-radius: 16px;
  padding: 0.17em 0.52em;
  display: inline-block;
  animation: gradient-move 3.5s linear infinite;
  transition: background 0.5s;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes gradient-move {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.about-hero p {
  font-size: 1.15rem;
  color: #285266;
  margin-bottom: 0;
}


@media (max-width: 600px) {
  .about-hero {
    padding: 2.5rem 0.2rem 1.5rem 0.2rem;
  }
}

@media (max-width: 500px) {
  .hero-content .highlight {
    font-size: 28px;
    font-size: 6.5vw;
  }
  .hero-section .hero-content h1 {
    font-size: 32px;
    font-size: 7vw;
  }
  .hero-section .hero-content p {
    font-size: 16px;
    font-size: 5.5vw;
  }
  .hero-btn {
    font-size: 5.5vw;
    padding: 10px 12px;
    text-align: center;
  }
}