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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}

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

/* --------------------------------------------------------- */
.service-section {
  min-height: 100vh; /* damit alles vertikal mittig ist */
  display: flex;
  flex-direction: column;
  justify-content: center; /* horizontal zentrieren */
  align-items: center;     /* vertikal zentrieren */
  text-align: center;      /* Text zentrieren */
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, #F5F1E6, #E8E8E0);
}
.service-overview {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  overflow-x: auto;
  justify-content: flex-start;
  padding: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.service-card {
  background: white;
  padding: 2rem 1rem;
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-decoration: none;
  color: var(--black);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto; /* Damit keine Umbrüche entstehen */
  scroll-snap-align: start;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-list {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 0 1rem;
}

.service-list li::before {
  content: "✂ ";
  margin-right: 8px;
  color: var(--sage);
}
.service-card img {
  width: 90px;
  margin-bottom: 1rem;
}
.service-overview {
  margin-bottom: 4rem;
}

.service-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}
.service-section h2 {
  font-size: 2rem;
  color: var(--dark-gray);
  margin-bottom: 2rem;
}
.service-section p {
  margin-bottom: 3rem;
  max-width: 700px;
}

.subline {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-gray);
  opacity: 0.7;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--dark-gray);
  color: white;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--sage);
  color: white;
}
