 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;
  }
}
@media (max-width: 768px) {
  .hero-moving-image,
  .hero-image-animated {
    animation: none !important;
    transform: none !important;
  }
}
.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-video-wrapper{
  position:relative;
  overflow:hidden;

  border-radius:12px;

  max-width:1100px;
  margin:2rem auto;

  aspect-ratio:16/9;

  background:#000;
}

/* POSTER */
.hero-poster{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
  transition:opacity 0.4s ease;
  z-index:1;
}
 

.hero-poster.hidden{
  opacity:0;
}

/* VIDEO */
.hero-video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;

  z-index:2;

  opacity:0;

  transition:opacity 0.9s ease;
}

/* WENN VIDEO WIRKLICH LÄUFT */
.hero-video.active{
  opacity:1;
}

.hero-video.active ~ .hero-poster {
  opacity:0;
}

.hero-video-overlay{
  position:absolute;
  inset:0;

  z-index:3;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.12),
      rgba(0,0,0,0.32)
    );

  pointer-events:none;
}

/* PLAY BUTTON */
.hero-play-btn{
  position:absolute;
  inset:0;

  display:none;

  align-items:center;
  justify-content:center;

  background:rgba(0,0,0,0.25);

  border:none;

  cursor:pointer;

  z-index:4;
}

.hero-play-btn i{
  font-size:4rem;
  color:#BB772E;
}


.hero-static-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hero-image-showcase {
    margin-top: 1rem;
  }

  .hero-static-image {
    width: 100%;
    height: auto;
    animation: none !important;
    transform: none !important;
    transition: none !important;
    filter: none !important;
  }
}

.section-symbol {
  display: inline-block !important;
  color: #BB772E !important;
  font-size: 1.5rem !important;
  margin-right: 8px;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Arial, sans-serif;
}

.btn-symbol {
  display: inline-block;
  color: #BB772E !important;
  margin-right: 16px;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
}

.btn-symbol-black {
  display: inline-block;
  color: black !important;
  margin-right: 0px;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
}


.card-icon .service-symbol {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #BB772E !important;
  font-size: 2rem !important;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.services .service-card .custom-card-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: rgba(187, 119, 46, 0.12) !important;
  border-radius: 14px !important;

  color: #BB772E !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.services .service-card .custom-card-icon .service-symbol {
  display: block !important;

  color: #BB772E !important;
  font-size: 1.2rem !important;
  line-height: 1 !important;
  font-weight: 600 !important;

  opacity: 1 !important;
  visibility: visible !important;

  font-family: Arial, "Segoe UI Symbol", "Noto Sans Symbols", sans-serif !important;
  transform: none !important;
}

/* Falls das Template beim Hover andere Farben setzt */
.services .service-card:hover .custom-card-icon,
.services .service-card:hover .custom-card-icon .service-symbol {
  color: #BB772E !important;
  opacity: 1 !important;
  visibility: visible !important;
}.icon-inside-input.input-symbol {
  position: absolute;
  left: 14px;
  top: 0.8rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #BB772E !important;
  font-size: 1rem;
  line-height: 1;
  font-family: Arial, "Segoe UI Symbol", "Noto Sans Symbols", sans-serif;

  pointer-events: none;
  z-index: 2;
}

.textarea-symbol {
  top: 1rem !important;
  color: #BB772E !important;
}