/* Leistungen-spezifische Styles */

/* Hero-Bereich */
.leistungen-hero {
  position: relative;
  height: 50vh;
  background: url("../assets/hero-leistungen.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-nav {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 2rem;
}
.sub-nav a {
  color: var(--color-light);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

.leistungen-hero h1 {
  color: var(--color-light);
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 1;
}

/* Services-Bereich */
.services {
  display: flex;
  flex-direction: column; /* alles untereinander */
  gap: 4rem;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto 4rem;
}


.service-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.service-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 48px;
  height: 48px;
}

.service-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.service-content ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.service-content li {
  margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .leistungen-hero {
    height: 30vh;
  }
  .sub-nav {
    display: none;
  }
  .leistungen-hero h1 {
    font-size: 2rem;
  }
  .services {
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-content h2 {
    font-size: 1.5rem;
  }
}