/* =========================================================
   RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Poppins', system-ui, sans-serif;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  min-height: 100vh;
  background: url('img/hero4.jpg') center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  width: 100%;
  padding: 32px 20px 140px; /* Platz lassen für CTA */
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.15)
  );
  text-align: center;
}

/* Headline */
.hero h1 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

/* Location Wrapper */
.hero-title {
  text-align: center;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}

/* Location wrapper */
.hero-location {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}

/* "in" – ruhig, unterstützend */
.hero-in {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* Stadt – klar, hochwertig, NICHT CTA-farbig */
.hero-city {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* Subline */
.hero-sub {
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.88);
  text-shadow: none;
}

/* =========================================================
   CTA FIXED (Daumen-Zone)
========================================================= */
.fixed-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 250px; /* Daumenhöhe */
  z-index: 999;
  text-align: center; 
}

/* CTA Button */
.button {
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;

  background: linear-gradient(135deg, #3fd2c7 0%, #2b6df6 100%);
  color: #fff;

  border-radius: 16px;
  padding: 18px 34px;
  font-size: 18px;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  box-shadow: 0 12px 30px rgba(43,109,246,0.55);
  
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0) 100%
  );
  animation: buttonShine 3.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonShine {
  0% {
    left: -60%;
  }
  55% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
/* =========================================================
   CONTENT IMAGES
========================================================= */
.content img {
  width: 100%;
  display: block;
}

/* =========================================================
   TRUST
========================================================= */
.trust {
  padding: 22px 18px 12px;
  text-align: center;
}

.trust ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust li {
  margin: 6px 0;
  font-size: 14px;
  color: #bcbcbc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.trust li::first-letter {
  color: #4fd1c5;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  text-align: center;
  font-size: 12px;
  color: #666;
  padding: 16px 0 36px;
}