/* Marketing Gym — shared chrome for legal pages (Impressum / Datenschutz / AGB). */
/* Mirrors hallomia.io minimal style: logo navbar, single-H1 body, footer with lang switcher. */

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1B2A4A;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #E8ECF0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo svg { height: 40px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #1B2A4A;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: #F5A623; }
.nav-links a.active {
  color: #F5A623;
  font-weight: 600;
}

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.lang-toggle {
  display: inline-flex;
  background: #F7F8FA;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 600;
}
.lang-toggle a {
  padding: 6px 14px;
  color: #6B7A8D;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.lang-toggle a.active { background: #1B2A4A; color: #fff; }
.lang-toggle a:not(.active):hover { color: #1B2A4A; }

.nav-cta {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #E09415; transform: translateY(-1px); }

.breadcrumb {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 24px 0;
  font-size: 0.85rem;
  color: #6B7A8D;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:first-child)::before {
  content: "›";
  color: #B0B8C2;
  font-weight: 600;
}
.breadcrumb a {
  color: #6B7A8D;
  text-decoration: none;
  transition: color .15s;
}
.breadcrumb a:hover { color: #F5A623; }
.breadcrumb [aria-current="page"] {
  color: #1B2A4A;
  font-weight: 600;
}

main {
  flex: 1;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
p { margin-bottom: 18px; color: #3a4a6b; }
a { color: #F5A623; }
strong { color: #1B2A4A; font-weight: 600; }

.canonical-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #F5A623;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 0;
  border-top: 1px solid #E8ECF0;
  margin-top: 8px;
}
.canonical-link:hover { text-decoration: underline; }
.canonical-link::before { content: "→"; font-weight: 700; }

.note {
  background: #FFF8EC;
  border-left: 3px solid #F5A623;
  padding: 14px 18px;
  border-radius: 6px;
  margin: 20px 0;
  color: #1B2A4A;
  font-size: 0.95rem;
}
.note strong { color: #1B2A4A; }

footer {
  border-top: 1px solid #E8ECF0;
  padding: 28px 24px;
  font-size: 0.85rem;
  color: #6B7A8D;
  text-align: center;
}
footer a { color: #6B7A8D; text-decoration: none; }
footer a:hover { color: #1B2A4A; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
}
@media (max-width: 600px) {
  main { padding: 32px 16px 64px; }
  h1 { font-size: 1.7rem; }
  .navbar-inner { padding: 0 16px; height: 64px; }
  .nav-logo svg { height: 32px; }
  .breadcrumb { padding: 18px 16px 0; font-size: 0.8rem; }
}
