:root {
      --dark-gray: #2E2E2E;
      --sage: #A8BDB0;
      --beige: #F5F1E6;
      --black: #1C1C1C;
      --light-gray: #CCCCCC;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

h1,h2,h3,h4 {
    font-family: 'Poppins', sans-serif;
}
p, li, a, button {
    font-family: 'Montserrat', sans-serif
}
li {
    list-style: none;
}
/* --------------------------------------------------------- */

.leistungen-section {
  padding: 6rem 1rem;
  background-color: #EFEFEA;
  text-align: center;
}

.leistungen-section h2 {
  font-size: 2rem;
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.leistungen-section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--black);
}

.kategorie-titel {
  font-size: 1.5rem;
  margin: 3rem 0 1rem;
  color: var(--dark-gray);
  border-bottom: 2px solid var(--sage);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.leistungen-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.leistungen-grid::-webkit-scrollbar {
  display: none; /* Chrome & Safari Scrollbar ausblenden */
}

.leistung-box {
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  padding: 2rem;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.leistung-box:hover {
  transform: translateY(-5px);
}

.leistung-box h3 {
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
}

.leistung-box p {
  font-size: 0.95rem;
  color: var(--black);
}

.leistungs-icon {
  width: 40px;
  margin-bottom: 0.8rem;
}

.preis-badge {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--sage);
  color: white;
  padding: 10px 40px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
}
/* --------------------------------------------------------- */
.kategorie-section {
  min-height: 40vh;
  flex-direction: column;
  justify-content: center; /* vertikal zentriert */
  align-items: center;
  padding: 2.5rem 0rem;
}

@media screen and (max-height: 500px) and (orientation: landscape) {
  .leistungen-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }

  .leistungen-grid::-webkit-scrollbar {
    display: none;
  }

  .leistung-box {
    min-width: 280px;
    max-width: 90vw;
  }
}
