/* =========================================
   ÜBER MICH – Seitenspezifische Styles
   ========================================= */

/* --- SEITENKOPF & BIO --- */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--color-beige);
}

.page-hero-image {
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 3rem;
  gap: 1.1rem;
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--color-dark-green);
  line-height: 1.15;
}

.page-hero-bio {
  font-size: 0.93rem;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 480px;
}

/* --- WEITERFÜHRENDE LINKS --- */
.ueber-links-section {
  background: #f9f4ec;
  padding: 5rem 4rem;
}

.ueber-links-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* --- CTA --- */
.cta-section {
  background: var(--color-beige);
  padding: 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  border-top: 1px solid #e8ddd0;
  border-bottom: 1px solid #e8ddd0;
}

.cta-section .btn-primary {
  align-self: center;
  background: var(--color-dark-green);
  color: #fff;
}

.cta-section .btn-primary:hover {
  background: var(--color-mid-green);
  color: #fff;
}

.cta-section .hero-tagline {
  color: var(--color-mid-green);
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-dark-green);
  line-height: 1.25;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-image {
    min-height: 340px;
  }

  .page-hero-content {
    padding: 2.5rem 1.5rem;
  }

  .ueber-links-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .page-hero-content h1 {
    font-size: 2.2rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }
}
