/* Marius Mobile Massage — Stylesheet */
:root {
  --gruen: #2e5e4e;
  --gruen-dunkel: #1f4237;
  --sand: #f4efe6;
  --sand-dunkel: #e8dcc8;
  --gold: #c89b5a;
  --text: #2b2b28;
  --text-hell: #6b6b64;
  --weiss: #fffdf9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.7;
  font-size: 17px;
}
h1, h2, h3, .sans { font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
h1 { font-size: 2.2rem; line-height: 1.2; color: var(--gruen-dunkel); }
h2 { font-size: 1.6rem; color: var(--gruen-dunkel); margin: 2.2rem 0 0.8rem; }
h3 { font-size: 1.15rem; color: var(--gruen); margin: 1.5rem 0 0.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--gruen); }
ul, ol { margin: 0 0 1rem 1.4rem; }
img { max-width: 100%; }

/* Header */
header {
  background: var(--weiss);
  border-bottom: 1px solid var(--sand-dunkel);
  position: sticky; top: 0; z-index: 50;
}
.nav-wrap {
  max-width: 1080px; margin: 0 auto; padding: 0.7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.logo-link { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-link img { height: 44px; }
nav ul { display: flex; gap: 1.1rem; list-style: none; margin: 0; flex-wrap: wrap; }
nav a {
  font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.92rem;
  text-decoration: none; color: var(--text);
}
nav a:hover, nav a.aktiv { color: var(--gruen); }
.nav-cta {
  background: var(--gruen); color: #fff !important;
  padding: 0.45rem 1rem; border-radius: 999px;
}
.nav-cta:hover { background: var(--gruen-dunkel); }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--sand) 0%, var(--sand-dunkel) 100%);
  padding: 4rem 1.2rem 3.5rem;
}
.hero-inner { max-width: 1080px; margin: 0 auto; max-width: 760px; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p.lead { font-size: 1.2rem; color: var(--text); }
.hero .badges { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1.2rem 0; padding: 0; list-style: none; }
.hero .badges li {
  background: var(--weiss); border: 1px solid var(--sand-dunkel);
  font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.85rem;
  padding: 0.3rem 0.85rem; border-radius: 999px;
}
.btn {
  display: inline-block; font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--gruen); color: #fff; text-decoration: none;
  padding: 0.8rem 1.6rem; border-radius: 999px; font-size: 1rem;
  border: none; cursor: pointer;
}
.btn:hover { background: var(--gruen-dunkel); }
.btn.sekundaer { background: transparent; color: var(--gruen); border: 2px solid var(--gruen); }
.btn.sekundaer:hover { background: var(--gruen); color: #fff; }

/* Layout */
main { max-width: 1080px; margin: 0 auto; padding: 2.5rem 1.2rem; }
main.schmal { max-width: 760px; }
.karten { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; margin: 1.5rem 0; }
.karte {
  background: var(--sand); border-radius: 14px; padding: 1.5rem;
  display: flex; flex-direction: column;
}
.karte h3 { margin-top: 0; }
.karte p { flex: 1; font-size: 0.97rem; }
.karte a { font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.92rem; }
.hinweis {
  background: var(--sand); border-left: 4px solid var(--gold);
  padding: 1rem 1.2rem; border-radius: 0 10px 10px 0; margin: 1.5rem 0;
  font-size: 0.95rem;
}
table { border-collapse: collapse; width: 100%; margin: 1.2rem 0; font-size: 0.97rem; }
th, td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--sand-dunkel); }
th { font-family: 'Segoe UI', Arial, sans-serif; background: var(--sand); color: var(--gruen-dunkel); }
.preis { font-weight: bold; color: var(--gruen-dunkel); white-space: nowrap; }

/* FAQ */
details {
  border: 1px solid var(--sand-dunkel); border-radius: 10px;
  padding: 0.9rem 1.2rem; margin-bottom: 0.7rem; background: var(--weiss);
}
details summary {
  font-family: 'Segoe UI', Arial, sans-serif; font-weight: 600;
  cursor: pointer; color: var(--gruen-dunkel);
}
details p { margin: 0.7rem 0 0; }

/* Formular */
form label { display: block; font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.9rem; font-weight: 600; margin: 1rem 0 0.3rem; }
form input, form select, form textarea {
  width: 100%; padding: 0.65rem 0.8rem; font-size: 1rem; font-family: inherit;
  border: 1px solid var(--sand-dunkel); border-radius: 8px; background: var(--weiss);
}
form textarea { min-height: 120px; }
form button { margin-top: 1.3rem; }

/* CTA-Block */
.cta-block {
  background: var(--gruen-dunkel); color: var(--sand);
  border-radius: 16px; padding: 2.2rem; margin: 2.5rem 0; text-align: center;
}
.cta-block h2 { color: #fff; margin-top: 0; }
.cta-block .btn { background: var(--gold); color: var(--gruen-dunkel); font-weight: 600; }
.cta-block a.tel { color: var(--sand); font-size: 1.25rem; font-family: 'Segoe UI', Arial, sans-serif; }

/* Footer */
footer { background: var(--gruen-dunkel); color: var(--sand); margin-top: 3rem; }
.footer-wrap {
  max-width: 1080px; margin: 0 auto; padding: 2.5rem 1.2rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
  font-size: 0.92rem;
}
footer h4 { font-family: 'Segoe UI', Arial, sans-serif; color: #fff; margin-bottom: 0.6rem; }
footer a { color: var(--sand); }
footer ul { list-style: none; margin: 0; }
footer li { margin-bottom: 0.35rem; }
.footer-unten {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center; padding: 1rem; font-size: 0.85rem; color: rgba(244,239,230,0.7);
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.9rem; }
  h1 { font-size: 1.7rem; }
  nav ul { gap: 0.7rem; }
}
