/* Zentraler Stil für droege-osteopathie.de */

:root{
  --bg: #f3e6ea;        /* helle Brombeere */
  --panel: #fff7f9;     /* „Papier“ auf Beere */
  --text: #3b2a2f;
  --berry: #7a2e3a;
  --berry-dark: #5a1f2b;
  --line: #d1b1bb;
}

* { box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.75;
  font-size: 17px;
}

.wrap{
  max-width: 860px;
  margin: 46px auto;
  padding: 0 18px;
}

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

nav{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 18px;
}

nav a{
  color: var(--berry);
  text-decoration: none;
  margin-right: 14px;
}

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

h1{
  color: var(--berry-dark);
  font-size: 30px;
  font-weight: 500;
  margin: 10px 0 22px;
}

p{ margin: 0 0 18px; }

hr{
  border: none;
  border-top: 1px solid var(--line);
  margin: 26px 0;
}

footer{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  color: #6b4b52;
}

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

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

/* Handy-Optimierung */
@media (max-width: 520px){
  .card{ padding: 22px 18px; border-radius: 14px; }
  h1{ font-size: 26px; }
}
