/* Waldgeister Friedrichroda – Stylesheet */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gruen-dunkel: #3a6b2a;
  --gruen-mittel: #5a8c47;
  --gruen-hell: #d4e8c2;
  --gruen-bg: #f0f5ec;
  --creme: #fdfaf5;
  --text-dunkel: #2c2c2c;
  --text-grau: #555;
  --weiss: #ffffff;
  --schatten: rgba(0, 0, 0, 0.12);
  --font-haupt: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  background-color: var(--creme);
  color: var(--text-dunkel);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ─────────────────────────────────────────────── */
header {
  background-color: var(--weiss);
  border-bottom: 3px solid var(--gruen-dunkel);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--schatten);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  height: 70px;
  width: auto;
}

nav {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--gruen-dunkel);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover,
nav a.aktiv {
  background-color: var(--gruen-dunkel);
  color: var(--weiss);
}

/* ── Hero-Banner (skalierend, zentriert) ────────────────── */
.hero-banner {
  width: 100%;
  line-height: 0;
  text-align: center;
  background-color: var(--gruen-bg);
}

.hero-banner img {
  width: 100%;
  max-width: 1300px;
  height: auto;
  display: inline-block;
}

/* ── Großes Logo + WILLKOMMEN zentriert ─────────────────── */
.hero-logo-gross {
  text-align: center;
  padding: 40px 32px 0;
  background-color: var(--gruen-bg);
}

.hero-logo-gross img {
  max-width: 320px;
  width: 60%;
  height: auto;
}

.hero-logo-gross .willkommen-titel {
  font-family: var(--font-haupt);
  font-size: 2.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  margin-top: 20px;
}

/* ── Social-Überschrift ─────────────────────────────────── */
.social-titel {
  font-family: var(--font-haupt);
  font-size: 2.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gruen-dunkel);
  margin-top: 32px;
  margin-bottom: 0;
}

/* ── Social-Links ───────────────────────────────────────── */
.hero-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.social-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gruen-dunkel);
  text-transform: uppercase;
  margin: 0;
}

.hero-social a {
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-social a:hover {
  opacity: 1;
  transform: scale(1.08);
}

.hero-social a img {
  height: 40px;
  width: auto;
  display: block;
}

@media (max-width: 700px) {
  .hero-social {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Hero / Willkommen ──────────────────────────────────── */
.hero {
  background-color: var(--gruen-bg);
  padding: 32px 32px 72px;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero-willkommen {
  font-family: var(--font-haupt);
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gruen-mittel);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--font-haupt);
  font-size: 2.4rem;
  color: var(--gruen-dunkel);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-linie {
  width: 70px;
  height: 3px;
  background: var(--gruen-mittel);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dunkel);
  margin-bottom: 16px;
}

.hero p:last-child {
  font-style: italic;
  color: var(--text-grau);
  margin-top: 8px;
}

.hero-marken {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 24px 0;
}

.hero-marken span {
  background: var(--weiss);
  border: 1px solid var(--gruen-mittel);
  color: var(--gruen-dunkel);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── Kontakt-Karte auf der Homepage ─────────────────────── */
.info-bar {
  background-color: var(--gruen-dunkel);
  color: var(--weiss);
  padding: 20px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.info-bar a {
  color: var(--gruen-hell);
  text-decoration: none;
}

.info-bar a:hover {
  text-decoration: underline;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.info-item .icon {
  font-size: 1.1rem;
}

/* ── Seiten-Inhalt ──────────────────────────────────────── */
main {
  flex: 1;
}

.seite-inhalt {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 32px;
}

.seite-inhalt h1 {
  font-family: var(--font-haupt);
  font-size: 2rem;
  color: var(--gruen-dunkel);
  margin-bottom: 10px;
}

.seite-inhalt .linie {
  width: 60px;
  height: 3px;
  background: var(--gruen-mittel);
  border-radius: 2px;
  margin-bottom: 32px;
}

.seite-inhalt h2 {
  font-size: 1.1rem;
  color: var(--gruen-dunkel);
  margin-top: 32px;
  margin-bottom: 8px;
}

.seite-inhalt p,
.seite-inhalt li {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--text-dunkel);
  margin-bottom: 10px;
}

.seite-inhalt ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

.seite-inhalt a {
  color: var(--gruen-dunkel);
}

/* ── Kontaktseite ───────────────────────────────────────── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 8px;
}

.kontakt-box h2 {
  margin-top: 0;
}

.oeffnungszeiten {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  row-gap: 4px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.oeffnungszeiten .tag {
  font-weight: 600;
  color: var(--gruen-dunkel);
}

.map-container {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gruen-hell);
}

.map-container iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background-color: var(--gruen-dunkel);
  color: var(--gruen-hell);
  text-align: center;
  padding: 24px 32px;
  font-size: 0.85rem;
  position: sticky;
  bottom: 0;
  z-index: 50;
}

footer a {
  color: var(--gruen-hell);
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-bottom: 8px;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
  }

  nav {
    justify-content: center;
  }

  .hero {
    padding: 44px 20px 52px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .info-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .seite-inhalt {
    padding: 36px 20px;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
