/* ===============================
   Über mich Section
=================================*/
.about {
  background: rgba(255, 255, 255, 0.85); /* leichter Weiß-Ton wie andere Sections */
  padding: 2rem 1rem;
  margin: 2rem auto;
  border-radius: 1rem;
  border: 2px solid #D99C5B; /* feine Umrandung passend zu anderen Sections */
  max-width: 900px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.about__card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}

.about__content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

.about__text-column {
  flex: 1 1 450px;
  color: #1F2937;
}

.about__headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about__subheadline {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #D99C5B;
}

.about__paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #374151;
}

/* Bildspalte */
.about__image-column {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__profile-image {
  max-width: 100%;
  border-radius: 1rem;
  border: 2px solid #D99C5B;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

/* CTA Button */
.about__cta {
  margin-top: 1.5rem;
  text-align: center;
  width: 100%;
}

.about__cta .hero-cta-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about__cta .hero-cta-btn--primary {
  background: #D99C5B;
  color: #fff;
}

.about__cta .hero-cta-btn--primary:hover {
  background: #FCCC70;
  color: #1F2937;
}

/* ===============================
   Responsive Anpassungen
=================================*/
@media (max-width: 1024px) {
  .about__headline {
    font-size: 2.25rem;
  }
  .about__subheadline {
    font-size: 1.35rem;
  }
}

@media (max-width: 768px) {
  .about__card,
  .about__content {
    flex-direction: column;
    align-items: center;
  }

  .about__text-column,
  .about__image-column {
    flex: 1 1 100%;
  }

  .about__headline {
    font-size: 2rem;
  }

  .about__subheadline {
    font-size: 1.25rem;
  }

  .about__paragraph {
    font-size: 0.95rem;
  }

  .about__cta .hero-cta-btn {
    width: 80%;
    max-width: 300px;
  }
}
