/* =========================================
   MEIN WEG – Seitenspezifische Styles
   ========================================= */

/* --- HERO --- */
.weg-hero {
  position: relative;
  background: var(--color-dark-green);
  padding: 7rem 2rem 6rem;
  border-bottom: 1px solid #e8ddd0;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.weg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/plant.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.weg-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.weg-hero .hero-tagline {
  color: rgba(255, 255, 255, 0.8);
}

.weg-hero h1 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
}

/* --- HAUPTINHALT --- */
.weg-content {
  background: var(--color-cream);
  padding: 5rem 2rem 4rem;
}

.weg-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.weg-inner p {
  font-size: 0.97rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.weg-inner p.weg-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-dark-green);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.weg-inner p.weg-emphasis {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark-green);
  line-height: 1.5;
}

.weg-verse {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-mid-green);
}

.weg-verse p {
  margin: 0;
}

.weg-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0.5rem 0;
  color: var(--color-mid-green);
}

.weg-divider::before,
.weg-divider::after {
  content: "";
  height: 1px;
  width: 64px;
  background: #e0d5c5;
}

.weg-divider img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.8;
}

.weg-inner p.weg-closing {
  text-align: center;
  margin-top: 1rem;
  color: var(--color-terra);
  font-size: 2.6rem;
}

/* --- CTA --- */
.weg-cta {
  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;
}

.weg-cta .hero-tagline {
  color: var(--color-mid-green);
}

.weg-cta h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-dark-green);
  line-height: 1.25;
}

.weg-cta .btn-primary {
  align-self: center;
  background: var(--color-dark-green);
  color: #fff;
}

.weg-cta .btn-primary:hover {
  background: var(--color-mid-green);
  color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
  .weg-hero h1 {
    font-size: 2rem;
  }
  .weg-cta h2 {
    font-size: 1.6rem;
  }
  .weg-inner p.weg-closing {
    font-size: 1.8rem;
  }
}
