/* ============================================
   Muggler-Massagen – Stylesheet
   Warm, ruhig, viel Weissraum
   ============================================ */

:root {
  --bg: #faf7f2;
  --bg-alt: #f1ebe2;
  --text: #3d352c;
  --text-soft: #6f6558;
  --accent: #b06a45;      /* warmes Terracotta */
  --accent-dark: #8f5233;
  --line: #e3dacc;
  --white: #fffdf9;
  --radius: 14px;
  --maxw: 62rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Avenir Next", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

a { color: var(--accent-dark); }

img { max-width: 100%; height: auto; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.nav-brand img { height: 40px; width: auto; }

.nav-brand span {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

nav.links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

nav.links a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

nav.links a:hover { color: var(--accent-dark); }

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 5.5rem 1.5rem 4.5rem;
}

.hero img.logo {
  height: 120px;
  width: auto;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin: 0 auto 2.2rem;
}

.badges {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1.05rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}

.btn:hover { background: var(--accent-dark); }

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  margin-left: 0.6rem;
}

.btn.ghost:hover { background: var(--bg-alt); }

/* ---------- Sections ---------- */

section { padding: 4.5rem 0; }

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

.section-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.section-intro {
  text-align: center;
  color: var(--text-soft);
  max-width: 38rem;
  margin: 0 auto 3rem;
}

/* Über mich */

.about {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: center;
}

.about .portrait {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  overflow: hidden;
}

.about .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about h2 { font-size: 1.9rem; margin-bottom: 1rem; }

.about ul {
  list-style: none;
  margin-top: 1.4rem;
}

.about ul li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}

.about ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Kontakt */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.card p { color: var(--text-soft); }

.card a.big {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 1.25rem;
  text-decoration: none;
  color: var(--accent-dark);
  font-family: Georgia, serif;
}

/* ---------- Footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 1.5rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

footer .foot-links {
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

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

footer a:hover { color: var(--accent-dark); }

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */

.page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.page h1 { font-size: 2.1rem; margin-bottom: 2rem; }

.page h2 { font-size: 1.35rem; margin: 2.2rem 0 0.7rem; }

.page p { margin-bottom: 1rem; color: var(--text-soft); }

/* ---------- Responsive ---------- */

@media (max-width: 700px) {
  .about { grid-template-columns: 1fr; }
  .about .portrait { max-width: 18rem; margin: 0 auto; }
  nav.links { display: none; }
  .hero { padding-top: 4rem; }
  .btn.ghost { margin-left: 0; margin-top: 0.7rem; }
}
