header {
  background: #1e1e1e;
  padding: 1rem;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

body {
  background-color: #121212;
  color: #ccc;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

footer {
  background: #1e1e1e;
  padding: 1rem;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}

main {
  padding: 2rem;
}

.logo {
  display: block;
  margin: 20px auto;
  max-width: 300px;
  height: auto;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  z-index:11
}

.nav-btn {
  background-color: #1e1e1e;
  border: 1px solid #ccc;
  color: #ccc;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-btn:hover {
  background-color: #ccc;
  color: #1e1e1e;
}

.nav-btn.highlight {
  background-color: #ccc;
  color: #1e1e1e;
}

.services_horizontal {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 2rem;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.service-box {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box h3 {
  color: #7448a8;
  margin-top: 0;
}

.service-box p {
  color: #ccc;
}

.service-box i {
  color: #ccc;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  display: block;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.icon-title i {
  color: #ccc;
  width: 24px;
  height: 24px;
}

.icon-title h3 {
  margin: 0;
  color: #7448a8;
  font-size: 1.1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366; /* WhatsApp-Grün */
  color: #1e1e1e;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.header-video {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /*min-width: 100%;
  min-height: 100%;*/
  object-fit: cover;
  object-position: center bottom; /* Standard */
  z-index: 0; /* <<< wichtig: 0, nicht -1 */
  opacity: 0.4;
  filter: grayscale(10%) brightness(1.2);
}

.nav-buttons,
.header-content {
  position: relative;
  z-index: 1; /* <<< über dem Video */
}

.highlight-quote {
  font-style: italic;
  font-size: 1.3rem;
  color: #ccc;
  border-left: 4px solid #666;
  padding-left: 1rem;
  margin: 2rem auto;
  max-width: 700px;
}

.unterschrift-img {
  display: block;
  max-width: 200px;
  margin: 2rem auto 0 auto;
  opacity: 0.7;
}


.invertiert {
  filter: invert(1) brightness(2);
}

.gif-preview {
  display: none;
  margin-top: 1rem;
  text-align: center;
}
.service-box.hovered .gif-preview {
  display: block;
}
