/*Slideshow */
.slideshow {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;

}
.slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
}
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pfeil {
  position: absolute;
  top: 0;
  bottom: 0;
  font-size: 50px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
  cursor: pointer;
}
.pfeil:hover {
  color: white;
}
.pfeil-links {
  left: 0;
}
.pfeil-rechts {
  right: 0;
}
.aktiv {
  opacity: 1;
}

/* Service Grid*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 64px 16px;
  padding-right: 32px;
  padding-top: 0px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  text-decoration: none;
  color: white;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card h3 {
  position: absolute;
  bottom: 16px;
  left: 16px;
  margin: 0;
  font-size: 20px;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card:hover {
  border: 1px solid chocolate;
}
/*ÜBerMIch*/
/* Container */
.uebermich-section {
  padding: 64px 32px;

  background: #f9f9f9; /* dezenter Hintergrund */
}

.uebermich-section h2 {
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 2rem;
  color: chocolate;
}

/* Grid für Bild + Text */
.uebermich-grid {
  display: flex;

  gap: 48px;
  justify-content: space-around;
  align-items: end;
}

/* Boxen */
.uebermich-box {
  /* background: white;*/
  padding: 16px 24px;
  border-radius: 16px;
  /*box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);*/
  max-width: 400px;
  width: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.uebermich-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* Bild */
.uebermich-img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 16px;
  object-fit: cover;
  display: block;

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Text */
.uebermich-text p {
  font-family: "DroidSans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}
.uebermich-box button {
  margin-top: 24px;
}

/* Container für die Logos */
.Kunden-imgs {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(160px, 1fr)
  ); /* flexible Spalten */
  gap: 32px;
  padding: 32px 16px;
  justify-items: center; /* Logos zentrieren */
  align-items: center;
}

/* Einzelnes Logo */
.Kunden-img {
  max-width: 200px; /* Logos nicht zu groß */
  max-height: 80px; /* Logos proportional begrenzen */
  width: 100%;
  height: auto;
  object-fit: contain; /* Logos verzerren nicht */
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  opacity: 0.95;
}

/* Hover-Effekt */
.Kunden-img:hover {
  transform: scale(1.05); /* leicht vergrößern */
  opacity: 1; /* volle Sichtbarkeit */
}
/*Feedback*/
/* CTA Sektion */
.cta-section {
  padding: 100px 20px;
  padding-bottom: 30vh;
  background: chocolate; /* deine Markenfarbe */
  text-align: center;
  color: white;
}

/* Inhalt */
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Überschrift */
.cta-section h2 {
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Text */
.cta-section p {
  font-family: "DroidSans", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Button */
.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: white;
  color: chocolate;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: black;
  color: white;
  transform: translateY(-3px);
}



/* Media Query für mobile Geräte (max-width: 768px) */
@media (max-width: 768px) {

  /* 1. Navigation: Umstellung auf Stapel oder Scrollbar */
  nav {
    flex-direction: column;
    padding: 10px;
  }

  .Logo {
    height: 7vh; /* Etwas kleiner am Handy */
    margin-bottom: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap; /* Falls zu viele Links, brechen sie um */
  }

  .nav-links a {
    font-size: 14px;
    margin-left: 5px;
  }

  /* Submenüs am Handy oft schwierig: Hier vereinfacht */
  .submenu {
    position: static; /* Untereinander statt schwebend */
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    display: none; /* Standardmäßig aus, oder man lässt sie weg */
  }

  /* 2. Überschriften anpassen */
  h1 {
    margin-left: 16px; /* Den großen Desktop-Abstand entfernen */
    font-size: 1.5rem;
    text-align: center;
  }

  /* 3. Slideshow Höhe reduzieren */
  .slideshow {
    height: 40vh;
    min-height: 250px;
  }

  .pfeil {
    font-size: 30px;
    width: 20%;
  }

  /* 4. "Über mich" Sektion: Bild über Text */
  .uebermich-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .uebermich-img {
    max-width: 90%;
  }

  .uebermich-box {
    text-align: center;
    max-width: 100%;
    padding: 0;
  }

  /* 5. Feedback-Sektion */
  .feedback-wrapper {
    max-width: 95%; /* Mehr Platz am Rand nutzen */
  }

  .feedback-box {
    min-width: 85%;
    margin: 10px 2.5%;
    padding: 20px 10px;
  }

  /* 6. CTA (Call to Action) */
  .cta-section {
    padding: 60px 20px;
    padding-bottom: 10vh;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}