/* ===== Naturheilpraxis Brunner – ruhiges, modernes Layout ===== */

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  color: #25211d;
  background-color: #f4eee8;
}

/* Farbpalette */
:root {
  --bg-page: #f4eee8;
  --bg-light: #fffaf4;
  --bg-alt: #f4eee8;   /* bewusst wie Grundfarbe, damit alles gleich hell */
  --bg-soft: #f2e7db;
  --bg-hero: #e2d2c1;

  --text-main: #25211d;
  --text-muted: #6a5f55;

  --accent: #8b5a3c;
  --accent-soft: #c39a78;
  --border-soft: #d1c2b3;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  background: #f5ece2;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* wieder wie vorher */
  padding: 0.9rem 0;
}

/* Logo mit Bild */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-right: 2rem;   /* Abstand zur Navigation */
}

/* Logo */
.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: 2.5rem; /* Abstand zur Navigation */
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;      /* macht den Rahmen kreisförmig */
  background: #e2d2c1;     /* runder, beiger Kreis wie im Header */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;        /* alles außerhalb des Kreises wird abgeschnitten */
}

.logo-mark img {
  width: 140%;
  height: 140%;
  object-fit: contain;     /* Logo bleibt vollständig sichtbar */
  display: block;
}

.logo-text {
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3b3129;
}

.logo-text span {
  display: block;
  font-size: 0.8rem;
  color: #7a6d62;
}
/* Burger fürs Handy */
#nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 22px;
  height: 2px;
  background: #3b3129;
}

/* Navigation */
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #4f453c;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--accent);
  border-color: var(--accent-soft);
}

.nav-links {
  display: none;
  background: #f5ece2;
}

#nav-toggle:checked ~ .nav-links {
  display: block;
}

@media (min-width: 768px) {
  .nav-toggle-label {
    display: none;
  }

  .nav-links {
    display: block !important;
  }

  nav ul {
    display: flex;
    gap: 1.5rem;
    padding-left: 2.5rem;   /* Abstand zwischen Logo und "Start" */
  }
}

/* Hero / Seitenkopf */
.hero,
.page-hero {
  background: linear-gradient(135deg, var(--bg-hero), #f5ece2);
  border-bottom: 1px solid var(--border-soft);
  text-align: left; /* alles im Kopfbereich linksbündig */
}

.hero {
  padding: 4rem 0 3rem;
}

.page-hero {
  padding: 2.4rem 0 1.8rem;
}

/* Inhalt im Kopfbereich bündig mit restlichem Inhalt */
.hero-content {
  max-width: 1040px;  /* gleiche Breite wie .container */
}

.tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7a6d62;
  margin-bottom: 0.9rem;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 0.8rem;
  color: #25211d;
}

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

.page-hero h1 {
  font-size: 2.1rem;
}

.hero p,
.page-hero .subtitle {
  margin: 0;
  color: #3b3129;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-block;
}

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

.btn-primary:hover {
  background: #9a6947;
}

.btn-secondary {
  border-color: #4f453c;
  color: #4f453c;
  background: transparent;
}

.btn-secondary:hover {
  background: #efe0d2;
}

/* Sections */
section {
  padding: 3rem 0;
  background: var(--bg-page);
}

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

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

.narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* Section-Titel */
.section-title {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #3b3129;
  margin-bottom: 1.4rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.6rem;
}

/* Grids */
.grid {
  display: grid;
  gap: 1.8rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Karten */
.card {
  background: var(--bg-light);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 1.6rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.15s ease-out;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
  border-color: var(--accent-soft);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #3b3129;
}

.card p {
  margin: 0;
  color: #3b3129;
}

/* Listen */
ul.clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.clean li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  color: #3b3129;
}

ul.clean li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #7a6d62;
}

/* Text */
main p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #3b3129;
}

/* Kontaktbox / Formular */
.contact-box {
  background: var(--bg-light);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  padding: 1.6rem;
}

form {
  display: grid;
  gap: 1rem;
}

.form-row-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4f453c;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.65rem;
  border-radius: 8px;
  border: 1px solid #cbb9a7;
  background: #fbf4ec;
  font: inherit;
  color: #25211d;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
}

textarea {
  min-height: 130px;
}

/* Rechtstexte */
.legal h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

/* Hinweise */
.hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: #e6d7c8;
  border-top: 1px solid var(--border-soft);
  padding: 1.3rem 0;
  font-size: 0.8rem;
  color: #4f453c;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
}

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

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}