.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slides */
.swiper.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.swiper.hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.swiper.hero-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.kenburns-active .swiper-slide.swiper-slide-active {
  animation: kenburnsZoom 12s ease-in-out infinite;
}
@keyframes kenburnsZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Overlay & Text */
.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 70%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 70%);
  text-align: center;
}
.hero-content {
  padding: 2rem 3rem;
  border-radius: 16px;
}

/* --- Titelbereich --- */
.hero-titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #67bed9;
  margin-bottom: 1.5rem;
}

.hero-greeting-line {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 0.3rem;
  color: #fff;
  line-height: 1.2;
}

.hero-title-main {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.2rem 0;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.15rem;
  margin-top: 0.2rem;
  opacity: 0.9;
  line-height: 1.4;
  color: #fff;
}

.hero-btn {
  display: inline-block;
  padding: 14px 38px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 40px;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background: #ffffff;
  color: #000000;
}
.hero-btn:active {
  transform: scale(0.97);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5; /* über Overlay und Gradient */
  color: #fff;
  text-align: center;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.hero-scroll-text {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.3rem;
  letter-spacing: 1px;
}

.hero-scroll-mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 15px;
  margin: 0 auto 6px;
  position: relative;
}

.hero-scroll-mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 6px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* Modal */
.hero-modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
}
.hero-modal {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  color: #000;
  position: relative;
}
.hero-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

/* SEO Text */
.hero-seo-text {
  padding: 2rem;
  background: #111;
  color: #ccc;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-content { padding: 1.5rem; }
}

/* === Modal Styling === */
.hero-modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
}
.hero-modal {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 640px;
  width: 90%;
  color: #000;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.hero-modal h2 {
  margin-top: 0;
  text-align: center;
  font-size: 1.8rem;
}
.hero-modal p {
  text-align: center;
  margin-bottom: 1rem;
}
.hero-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
}

/* === Formular === */
.hero-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.hero-contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-contact-form input,
.hero-contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.hero-contact-form button {
  margin-top: 0.8rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}
.hero-contact-form button:hover {
  background: #ff0066;
}
.hero-form-response {
  margin-top: 0.8rem;
  text-align: center;
  font-weight: 500;
}
.hero-contact-form select {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fff;
  color: #000;
}
