
:root {
  --font-color: #2f2f2fd4;
  --font-color-warm: #3b2f2cc4;
  --font-color-button: #4a4340;
  --link-color: #705647;
  --link-hover: #A88B77;
  --caption-color: #555;
  --card-bg: #f8f5f2;
  --font-base: 'Lexend';
  --font-h2: 'Archivo Black';
  --font-h3: 'Poppins';
  --primary-color:rgb(230, 226, 216);
  --primary-color-light: rgba(67, 24, 2, 0.296);
  --secondary-color: #CCBAA2;
  --highlight-color: #abbd99;
  --background-box:rgba(67, 24, 2, 0.081);
  --button-color: #59230E;
  --button-hover-color: #798177;
  --background-color:#FBF7F4;
  --bbg-dark:#c5c5c55e;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Karten */
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--font-color);
  margin: 0;
  padding-top: 8rem;
  line-height: 1.6;
}

.service-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--font-color-warm);
  position: relative;
}

.section-title svg {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
}

.section-title svg path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 1s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}


.subtitle {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--font-color-warm);
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
  background-color: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 20px rgba(67, 24, 2, 0.08);
  transition: transform 0.3s ease;
}

.service-block:hover {
  transform: translateY(-4px);
}

.service-block.reverse {
  flex-direction: column;
}

.text-content {
  flex: 1;
  max-width: 600px;
}

.text-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--font-color-warm);
  font-weight: 400;
}

.text-content ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.highlight-box {
  background-color: var(--primary-color);
  padding: 1rem;
  border-left: 4px solid var(--secondary-color);
  margin-top: 1rem;
  border-radius: 0.5rem;
  font-style: italic;
}

.image-content {
  flex: 1;
  max-width: 500px;
}

.image-content img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 4px 12px var(--primary-color-light);
  opacity: 80%;
}

.skizze1 {
  opacity: 85%;
}

.cta-section {
  background-color: var(--caption-color);
  padding: 3rem 1.5rem;
  text-align: center;
  width: 100%;
}
.cta-section {
  background-color: var(--caption-color);
  padding: 3rem 1.5rem;
  text-align: center;
  width: 100%;
}

.cta-button {
  background-color: var(--primary-color);
  color: var(--font-color-button);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
}


@media (min-width: 768px) {
  .service-block {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 5rem;
  }

  .service-block.reverse {
    flex-direction: row-reverse;
  }

  .text-content, .image-content {
    max-width: 50%;
  }
}