/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body – Hintergrund und Text */
body {
  background: #eeece2;
  color: #000000;
  font-family: sans-serif;
}

/* Header, Navigation, Footer full-width */
.site-header,
.site-nav,
footer {
  width: 100%;
  background: #eeece2;
  color: #000000;
}

/* Header */
.site-header {
  position: relative;
  padding: 1rem;
  background: #eeece2;
  color: #000000;
}

/* Branding-Block zentriert */
.site-header__branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Burger-Button absolut links, nur mobil sichtbar */
.nav-toggle {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000000;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}


/* Navigation */
.site-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
}
.site-nav a {
  color: #000000;
}
.site-nav li.active a {
  font-weight: bold;
  text-decoration: underline;
}

/* Page-Layout */
/* äußere Fläche transparent, damit Body-Hintergrund durchscheint */
.container {
  width: 100%;
  background: transparent;
}
/* innere Spalte – mittig zentriert */
.page-content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: #f8f7f2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Links */
a {
  color: #0b7ab1;
  text-decoration: none;
}
a:hover {
  color: #660036;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #eeece2;
  color: #000000;
}

.site-footer__logo {
  margin-bottom: 1rem;
}

.site-footer__quote {
  font-style: italic;
  margin: 1rem 0;
  color: #FA0514; /* oder zieh es aus deiner Datenbank */
}

.site-footer__legal,
.site-footer__social {
  margin: 0.5rem 0;
}

.site-footer__legal a,
.site-footer__social a {
  color: #0b7ab1;
  text-decoration: none;
  margin: 0 0.5rem;
}

.site-footer__legal a:hover,
.site-footer__social a:hover {
  color: #660036;
}


/* Mobile-Responsive */
@media (max-width: 768px) {
  /* Burger anzeigen */
  .nav-toggle {
    display: block;
  }
  /* Navigation standard verstecken */
  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 1rem;
  }
  /* Navigation einblenden, wenn body.nav-open */
  body.nav-open .site-nav {
    display: block;
  }
  /* Vertikale Menü-Liste */
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Kontaktformular */
.kontaktformular-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.kontaktformular {
  max-width: 500px;
  width: 100%;
  background: #f8f7f2;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.kontaktformular h2,
.kontaktformular p {
  text-align: center;
}

/* Chat */
.chat-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.chat {
  max-width: 600px;
  width: 100%;
  background: #f8f7f2;
  padding: 2rem;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.chat h2,
.chat p {
  text-align: center;
}