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: auto;    /* nutzt vollen Platz */
  height: 80px;
  display: block;
}
.logo-img-small {
  width: 25px;    /* nutzt vollen Platz */
  height: 25px;
  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);
  }
}












    :root {
      --bg: #0d0d0f;
      --panel: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
      --panel-border: rgba(255, 165, 0, 0.16);
      --text: #f3f3f3;
      --muted: rgba(255,255,255,0.78);
      --accent: #BB772E;
      --accent-2: #ffb04a;
    }

    html { scroll-behavior: smooth; }
    body {
      background: radial-gradient(circle at top, #17171b 0%, var(--bg) 55%);
      color: var(--text);
      font-family: Arial, Helvetica, sans-serif;
    }

    .navbar {
      background: rgba(12,12,14,.75);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .navbar-brand,
    .nav-link,
    .footer-link { color: #fff; }
    .nav-link:hover,
    .footer-link:hover,
    .navbar-brand:hover { color: var(--accent-2); }

    .section-pad { padding: 100px 0; }
    .hero-pad { padding: 150px 0 100px; }

    .cards-kicker {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--accent);
      font-size: .95rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .cards-title {
      font-size: clamp(2.4rem, 4vw, 4.3rem);
      line-height: 1.08;
      margin-bottom: 20px;
      font-weight: 800;
    }

    .cards-text,
    .cards-subtext {
      color: var(--muted);
      line-height: 1.75;
      font-size: 1.05rem;
    }

    .cards-panel,
    .cards-preview-box,
    .cards-item,
    .service-card {
      background: var(--panel);
      border: 1px solid var(--panel-border);
      border-radius: 24px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    }

    .cards-panel { padding: 42px; }
    .cards-item { padding: 24px; height: 100%; }
    .service-card { padding: 28px; height: 100%; }

    .cards-preview-box {
      overflow: hidden;
      position: relative;
      min-height: 320px;
    }

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

    .preview-placeholder,
    .cards-placeholder {
      min-height: 250px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 30px;
      color: #fff;
      background:
        radial-gradient(circle at 20% 20%, rgba(255,176,74,.22) 0%, rgba(255,176,74,0) 28%),
        radial-gradient(circle at 80% 30%, rgba(187,119,46,.28) 0%, rgba(187,119,46,0) 22%),
        linear-gradient(135deg, #1f1f23 0%, #131316 100%);
    }

    .cards-placeholder {
      border: 1px dashed rgba(255,165,0,.35);
      border-radius: 20px;
      color: var(--accent);
      font-weight: 700;
    }

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

    .art-btn-primary {
      background: var(--accent);
      color: #111;
    }

    .art-btn-primary:hover {
      background: var(--accent-2);
      color: #111;
      transform: translateY(-1px);
    }

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

    .art-btn-outline:hover {
      border-color: rgba(255,176,74,.6);
      color: var(--accent-2);
      transform: translateY(-1px);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      background: var(--accent);
      color: #111;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      margin-bottom: 1rem;
      transition: transform .25s ease;
    }

    .service-card:hover .card-icon { transform: scale(1.08); }

    .cards-list {
      padding-left: 1.1rem;
      color: rgba(255,255,255,.85);
      line-height: 1.8;
    }

    .cards-item h5,
    .service-card h5,
    h2, h3 { font-weight: 700; }

    .muted-note {
      color: rgba(255,255,255,.6);
      font-size: .95rem;
    }

    .footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 28px 0 40px;
      color: rgba(255,255,255,.7);
    }

    .badge-soft {
      display: inline-block;
      padding: .45rem .8rem;
      border-radius: 999px;
      background: rgba(255,176,74,.12);
      border: 1px solid rgba(255,176,74,.22);
      color: #ffd29b;
      font-size: .92rem;
    }

    @media (max-width: 991.98px) {
      .section-pad { padding: 72px 0; }
      .hero-pad { padding: 130px 0 72px; }
      .cards-panel { padding: 28px; }
      .preview-image,
      .preview-placeholder,
      .cards-placeholder { min-height: 240px; }
    }

    .image-wrapper { position: relative; display: inline-block; }
    .image-wrapper img { display: block; width: 100%; border-radius: 8px; }
    .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; }
    .play-btn::before { content: "\25B7"; font-size: 40px; color: #fff; margin-left: 6px; }
    .play-btn:hover { background: orange; }

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