
:root {
  --bg: #edf3fb;          /* Hintergrund beige */
  --bg-soft: #e2ecfa;     /* warme, natürliche Flächen */
  --card: #f9fbff;        /* Kartenhintergrund */
  --accent: #5a89c9;      /* Naturgrün */
  --accent-soft: #d3e3f8; /* helles Grün */
  --text: #1f2633;        /* Haupttext dunkelbraun */
  --muted: #5c6a80;       /* dezenter Text */
  --border-subtle: #c6d5ec;
  --shadow-soft: 0 8px 18px rgba(60, 100, 160, 0.18);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f9fbff 0, #edf3fb 45%, #d7e6fb 100%);
  color: var(--text);
  min-height: 100vh;
  color: var(--text);
  min-height: 100vh;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(252, 247, 240, 0.95);
  border-bottom: 1px solid rgba(221, 203, 179, 0.8);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

nav a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

nav a.primary-link {
  background: var(--accent);
  color: #fdfaf4;
  border-color: var(--accent);
}

/* Mobile Nav Button */
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #fbf6ed;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

/* Hauptbereich */
main {
  max-width: 1100px;
  margin: 24px auto 36px;
  padding: 0 18px;
}

/* Hero */
.hero {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border-subtle);
  padding: 22px 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 8px;
}

.hero-badge span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-text h1 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}

.hero-text p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-highlight {
  margin-top: 4px;
  font-weight: 500;
  color: var(--accent);
}

.hero-card {
  background: #f8f1e6;
  border-radius: 16px;
  padding: 16px 16px 18px;
  border: 1px solid var(--border-subtle);
  font-size: 0.95rem;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-card p {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--muted);
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-card li {
  margin-bottom: 4px;
}

/* Sektionen */
section {
  margin-top: 30px;
}

section h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.section-intro {
  max-width: 640px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Kartenraster */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 16px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(180, 140, 90, 0.12);
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Kontaktseite */
.contact-info p {
  margin: 4px 0;
}

.contact-highlight {
  font-weight: 600;
}

.contact-box {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 16px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Formular */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fcf7ef;
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: #9c8b76;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fdfaf4;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 8px 16px rgba(79, 127, 79, 0.35);
  margin-top: 6px;
}

button:hover {
  background: #3f6840;
}

/* Preistabelle */
.table-card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

th,
td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  text-align: left;
}

th {
  background: #f5ebdd;
  font-weight: 500;
}

tbody tr:last-child td {
  border-bottom: none;
}

.price-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
footer {
  padding: 14px 18px 22px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Responsiv */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 8px 18px 10px;
    background: #fcf6ed;
    border-bottom: 1px solid var(--border-subtle);
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
  }

  body.nav-open nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* Fotokarte im Hero */
.hero-photo-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 12px;
}

.hero-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-photo-caption {
  padding: 8px 10px 10px;
  font-size: 0.85rem;
  color: var(--muted);
}







@media (max-width: 780px) {
  
}

.hero-photo-card {
  max-width: 300px;
}

/* Querbalken / Bänder */

.band {
  margin-top: 26px;
  border-radius: 18px;
  padding: 16px 18px;
}

.band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.band-text {
  flex: 1 1 260px;
}

.band-text h2 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.band-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.band-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  background: var(--card);
}

.band-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.band-btn-primary {
  background: var(--accent);
  color: #fdfaf4;
  border-color: var(--accent);
}

.band-btn-primary:hover {
  background: #3f6840;
  color: #fdfaf4;
}

.band-btn-secondary {
  background: #f5ebdd;
}

/* Farbvarianten */
.band-hufpflege {
  background: #edf3fb;
}

.band-stadt {
  background: #d7e6fb;
}
