 body {
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-family: 'Raleway', sans-serif;
}
.icon-inside-input {
  position: absolute;
  left: 12px;
  top: 0.85rem; 
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
}


textarea.form-control,
input.form-control {
  padding-left: 2.2rem;
}

.floating-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  border-radius: 20px;
  width: 100px;   /* etwas größer */
  height: 50px;  /* für Text genug Platz */
  padding: 0px;
}

.logo-img {
  width: 50%;    /* nutzt vollen Platz */
  height: auto;
  display: block;
}

#hero::before,
#hero::after {
  display: none !important;
  background: none !important;
}

.iframe-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 2rem auto;
  border-radius: 8px;
}

.exit-scroll-btn {
  position: absolute;  /* im Wrapper positioniert */
  top: 50%;
  right: 20px;           /* Abstand vom linken Rand, z. B. 20px */
  transform: translateY(-50%); /* NUR Y-Achse zentrieren */
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.6); /* schwarz transparent */
  border: 1px solid rgba(255, 165, 0, 0.68);
  border-radius: 50%;
  color: #BB772E; /* dein Orange */ 
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10; /* über iframe */
  transition: background 0.3s ease;
}

.exit-scroll-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.exit-scroll-btn i {
  font-size: 1rem;
}

.wave-trenner {
  background: linear-gradient(180deg, #111 0%, #0f0f0f 100%);
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}
 
 .card-icon {
  width: 30px;
  height: 30px;
  background: #BB772E; /* oder deine Akzentfarbe */
  color: #111; /* Icon-Farbe (z. B. dunkel im hellen Kreis) */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px; /* Icon-Größe */
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1);
  background: orange; /* oder deine Akzentfarbe */
}

 
.hand-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  z-index: 1000;
  animation: moveHand 1s ease-in-out infinite alternate;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes moveHand {
  0%   { transform: translate(-60%, -50%) rotate(0deg); }
  100% { transform: translate(-40%, -50%) rotate(0deg); }
}
#helpModal {
  display: none; /* Standardmäßig versteckt */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  /* display wird später per JS auf "flex" gesetzt */
}

/* Zentrierte Überschrift im Modal */
#helpModal .info-hotspot-title-wrapper {
  text-align: center;
  width: 100%;
  justify-content: center;
}

/* Zentrierter Text */
#helpModal .info-hotspot-text {
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.6;
}

/* Bilder im Modal */
#helpModal .info-hotspot-text img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
 
}

.art-teaser {
  padding: 0 0 80px;
}

.art-teaser-card {
  background: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
  border: 1px solid rgba(255, 165, 0, 0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.art-teaser-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.art-teaser-content {
  padding: 42px;
}

.art-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #BB772E;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.art-teaser-content h2 {
  margin-bottom: 16px;
}

.art-teaser-content p {
  margin-bottom: 24px;
}

.art-teaser-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.art-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.art-btn-primary {
  background: #BB772E;
  color: #111;
}

.art-btn-outline {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}

@media (max-width: 991.98px) {
  .art-teaser-content {
    padding: 30px;
  }

  .art-teaser-image {
    min-height: 240px;
  }
}

.video-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.art-teaser-card .row {
  min-height: 420px;
}





.hero-image-animated {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 8px;
}

.hero-moving-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transform-origin: center center;
  animation: heroPanZoom 8s ease-in-out infinite alternate;
  will-change: transform;
}



@keyframes heroPanZoom {
  0% {
    transform: scale(1.03) translateX(-12px);
  }
  50% {
    transform: scale(1.08) translateX(12px);
  }
  100% {
    transform: scale(1.04) translateX(-6px);
  }
}

.hero-description-accent {
  color: #BB772E !important;
}

.nav-logo {
  height: 80px;
  width: auto;
}