:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f6f4ef;
  --color-text: #2c2a26;
  --color-text-light: #5c584f;
  --color-primary: #5b7a4a;
  --color-primary-dark: #45603a;
  --color-accent: #c96a3a;
  --color-border: #e4e0d6;
  --max-width: 1100px;
  --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: var(--color-primary-dark); }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
  color: var(--color-text);
}

h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary-dark);
}

h3 { font-size: 1.2rem; color: var(--color-accent); }
h4 { font-size: 1rem; margin-top: 1.4em; }

p { margin: 0 0 1em; }

ul { margin: 0 0 1em; padding-left: 1.2em; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 20, 18, 0.96);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8em 1.2em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}

.header-phone {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #d8d5cb;
  white-space: nowrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  order: 2;
}

.logo img { height: 46px; width: auto; }

.main-nav { order: 3; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #f1efe9;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--color-accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4em;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 24, 18, 0.55) 0%, rgba(20, 24, 18, 0.35) 50%, rgba(20, 24, 18, 0.65) 100%);
}

.hero-content {
  position: relative;
  padding: 2em 1em;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.3em;
}

.hero-content h1 span {
  font-weight: 400;
  opacity: 0.9;
}

.hero-content p {
  font-size: 1.1rem;
  margin: 0;
  color: #f1efe9;
}

/* Sections */
.section {
  padding: 4.5em 1.2em;
}

.section-alt { background: var(--color-bg-alt); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3em;
  align-items: center;
}

.two-col.reverse .col-img { order: -1; }

.col-img img {
  border-radius: 6px;
}

/* Spenden */
.spenden {
  text-align: center;
}

.spenden-name {
  font-weight: 600;
}

.spenden-box {
  display: inline-block;
  margin-top: 1em;
  padding: 1.5em 2.5em;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  text-align: left;
}

.spenden-box h3 {
  text-align: center;
  margin-bottom: 0.8em;
}

.spenden-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.3em 1em;
}

.spenden-box dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.spenden-box dd { margin: 0; }

/* Kontakt */
.kontakt address {
  font-style: normal;
}

.kontakt .notice {
  margin-top: 1.2em;
  font-size: 0.9rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* Impressum */
.impressum h3 { color: var(--color-primary-dark); margin-top: 1.6em; }
.impressum .fineprint {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Footer */
.site-footer {
  padding: 2em 1.2em;
  text-align: center;
  background: var(--color-primary-dark);
  color: #f1efe9;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .two-col.reverse .col-img { order: 0; }
}

@media (max-width: 700px) {
  .header-phone { display: none; }

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .logo { order: 0; }

  .nav-toggle {
    display: flex;
    order: 1;
  }

  .main-nav {
    order: 2;
    width: 100%;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-top: 0.5em;
  }

  .main-nav.open ul { display: flex; }

  .main-nav ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .main-nav ul li a {
    display: block;
    padding: 0.9em 0.2em;
  }
}
