:root {
  --forest: #243d2f;
  --forest-2: #355944;
  --moss: #6f8b72;
  --cream: #f5f1e8;
  --sand: #ded2bd;
  --white: #ffffff;
  --text: #1d211e;
  --muted: #66706a;
  --line: #e4dccd;
  --shadow: 0 18px 45px rgba(24, 35, 28, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: var(--forest);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(36, 61, 47, 0.12);
}

.header-inner {
  max-width: 1240px;
  margin: auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  text-decoration: none;
  color: var(--forest);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-main {
  font-size: 1.85rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-sub {
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* NAVIGATION */

.main-nav {
  display: flex;
  gap: 0.55rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(36, 61, 47, 0.12);
  padding: 0.45rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(24, 35, 28, 0.08);
}

.main-nav a {
  text-decoration: none;
  color: var(--forest);
  font-weight: 750;
  font-size: 1rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.main-nav a:hover {
  background: var(--forest);
  color: white;
}

/* HERO */

.hero {
  position: relative;
  min-height: 82vh;
  background: url("bilder/hero.jpg") center 35% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 31, 24, 0.48), rgba(18, 31, 24, 0.75)),
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 50%);
}

.hero-content {
  position: relative;
  max-width: 980px;
  color: white;
}

.image-label {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.95rem;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--moss);
  margin: 0 0 0.7rem;
}

.hero .eyebrow {
  color: rgba(255,255,255,0.82);
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0 0 1.4rem;
}

.hero-text {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  max-width: 760px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.92);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 1rem 1.35rem;
  font-weight: 800;
}

.btn.primary {
  background: var(--sand);
  color: var(--forest);
}

.btn.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
}

/* SECTIONS */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
  color: var(--forest);
}

.section-head p {
  font-size: 1.12rem;
  color: var(--muted);
}

.light-text h2,
.light-text p,
.light-text .section-kicker {
  color: white;
}

/* FOTO-GRID */
/* 6 Bilder = sauber 3 oben, 3 unten */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.photo-grid figure {
  margin: 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.photo-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.25s ease;
}

.photo-grid img:hover {
  transform: scale(1.025);
}

.photo-grid figcaption {
  display: none;
}
/* EINZELNE BILDAUSSCHNITTE */
/* Hier kannst du Problemfotos feinjustieren */

/* Molly 1 */
.photo-grid figure:nth-child(1) img {
  object-position: center 30%;
}

/* Molly 2 */
.photo-grid figure:nth-child(2) img {
  object-position: center top;
}

/* Molly 3 */
.photo-grid figure:nth-child(3) img {
  object-position: center 35%;
}

/* Molly 4 */
.photo-grid figure:nth-child(4) img {
  object-position: center 30%;
}

/* Molly 5 */
.photo-grid figure:nth-child(5) img {
  object-position: center 25%;
}

/* Molly 6 */
.photo-grid figure:nth-child(6) img {
  object-position: center top;
}

/* Molly 7 falls du später doch wieder ein 7. Mollybild einfügst */
.photo-grid figure:nth-child(7) img {
  object-position: center 30%;
}

/* MOLLY-INFOS */

.profile-card {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.profile-card h3,
.text-card h3,
.value-card h3,
.contact-card h3 {
  color: var(--forest);
  font-size: 1.35rem;
  margin-top: 0;
}

.two-col-list {
  columns: 2;
  padding-left: 1.2rem;
}

.judge {
  color: var(--muted);
  font-style: italic;
}

/* WELPEN-BEREICH */

.forest-section {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(36,61,47,0.94), rgba(36,61,47,0.9)),
    radial-gradient(circle at top left, rgba(222,210,189,0.25), transparent 45%);
  color: white;
}

.forest-section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.text-card {
  background: rgba(255,255,255,0.94);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.muted-card {
  background: rgba(245,241,232,0.94);
}

.text-card ul,
.profile-card ul {
  padding-left: 1.2rem;
}

.contact-highlight {
  margin-top: 1.6rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--cream);
  border-left: 5px solid var(--forest);
}

.notice {
  max-width: 1180px;
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  font-weight: 650;
}

/* ZUCHT */

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.value-card span {
  display: inline-block;
  color: var(--moss);
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

/* ÜBER UNS / IMPRESSUM */

/* ÜBER UNS */

.about-card {
  position: relative;

  max-width: 1180px;

  margin: 3rem auto;

  padding: 0;

  border-radius: var(--radius);

  overflow: hidden;

  background:
    linear-gradient(
      rgba(36, 61, 47, 0.62),
      rgba(36, 61, 47, 0.62)
    ),
    url("bilder/ueber-wald.jpg")
    center center / cover no-repeat;

  box-shadow: var(--shadow);

  border: 1px solid var(--line);
}

/* Textfläche */

.about-overlay {
  padding: 4rem 4rem 4rem 3rem;

  background:
    linear-gradient(
      90deg,
      rgba(245, 241, 232, 0.94) 0%,
      rgba(245, 241, 232, 0.88) 50%,
      rgba(245, 241, 232, 0.30) 100%
    );
}

/* Überschrift */

.about-head {
  margin-bottom: 2rem;
}

.about-head h2 {
  color: var(--forest);
}

/* Bild + Text */

.about-content {

  display: grid;

  grid-template-columns: 120px 1fr;

  gap: 1.5rem;

  align-items: start;

  max-width: 780px;
}

/* kleines Profilbild */

.about-profile-img {

  width: 120px;

  height: 120px;

  object-fit: cover;

  object-position: center top;

  border-radius: 18px;

  display: block;

  box-shadow: 0 12px 30px rgba(0,0,0,0.18);

  border: 3px solid rgba(255,255,255,0.75);
}

/* Text */

.about-text p {

  margin-top: 0;

  margin-bottom: 1.2rem;

  font-size: 1.08rem;

  color: var(--text);
}

/* Impressum bleibt normal */

.imprint-section {

  background: white;

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  border: 1px solid var(--line);

  margin-top: 3rem;

  margin-bottom: 3rem;
}

/* Mobil */

@media (max-width: 700px) {

  .about-overlay {

    padding: 2rem;

    background: rgba(245, 241, 232, 0.92);
  }

  .about-content {

  display: grid;

  grid-template-columns: 110px 1fr;

  gap: 1.2rem;

  align-items: start;

  max-width: 620px;
}

  .about-profile-img {

    width: 110px;

    height: 110px;
  }
}