:root {
  --bg: #f7f2e7;
  --surface: #ffffff;
  --ink: #3e2723;
  --ink-soft: #5d4037;
  --wood: #5c3a21;
  --wood-deep: #2f1d12;
  --accent: #c97c3d;
  --accent-deep: #a65e2e;
  --header-bg: #f1e2c6;
  color-scheme: light;
}

* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a { color: inherit; }
a:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Header / Navigation */
.site-header {
  background-color: var(--accent-deep);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 0;
  margin: 0;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: color 0.2s ease;
  padding-bottom: 4px;
}

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

.nav a[aria-current="page"] {
  color: #ffffff;
  border-bottom: 2px solid var(--bg);
}

/* Hero (Startseite) */
.hero {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 70px;
  text-align: center;
}

.hero-decoration {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  color: var(--wood);
  opacity: 0.12;
  pointer-events: none;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--wood-deep);
}

.hero .hero-by {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--accent-deep);
  margin: 0 0 20px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: var(--accent-deep);
  color: #fff;
  box-shadow: 0 6px 16px rgba(166, 94, 46, 0.35);
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--wood-deep);
  border: 2px solid var(--accent-deep);
}

.btn:hover { transform: translateY(-2px); }

/* Page-Hero (Unterseiten) */
.page-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 36px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: var(--wood-deep);
  margin: 0;
}

/* Content */
main {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.content {
  padding: 40px;
  background-color: var(--surface);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin-bottom: 48px;
}

.content h2 {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 30px;
  color: var(--accent-deep);
  margin: 0 0 32px;
}

.content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  color: var(--accent-deep);
  margin: 32px 0 12px;
}

.content h3:first-of-type { margin-top: 8px; }

.content p {
  line-height: 1.8;
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

.content ul:not(.features) {
  margin: 0 0 20px;
  padding-left: 22px;
  line-height: 1.8;
  color: var(--ink-soft);
}

.content ul:not(.features) li { margin-bottom: 6px; }

.content address {
  font-style: normal;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* Feature-Liste (Startseite) */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}

.features li {
  padding-left: 22px;
  border-left: 3px solid var(--accent-deep);
  line-height: 1.7;
  font-size: 16px;
  color: var(--ink-soft);
}

.features strong {
  display: block;
  color: var(--wood-deep);
  font-size: 17px;
  margin-bottom: 4px;
}

/* Karte */
.map-section { margin-bottom: 56px; }

.map-section h2 {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  color: var(--accent-deep);
  margin-bottom: 20px;
}

iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 36px 24px;
  font-size: 15px;
  color: #fff;
  background-color: var(--accent-deep);
  margin-top: auto;
}

.site-footer p { margin: 0 0 8px; }

.site-footer a {
  text-decoration: underline;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero .hero-by { font-size: 18px; }
  .hero-decoration { width: 180px; height: 180px; }
  .page-hero h1 { font-size: 28px; }
  .content { padding: 28px; }
  .content h2 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .nav a { transition: none; }
}
