/* Gemeinsames Stylesheet der ÖFFENTLICHEN Firmenseiten (index, leistungen,
   info, kontakt). Bewusst schlicht gehalten — normale kleine Firmenwebsite.
   Das passwortgeschützte Dashboard (*.dc.html) nutzt dieses Stylesheet NICHT.
   Muss in middleware.ts vom Basic-Auth ausgenommen bleiben, sonst laden die
   öffentlichen Seiten ohne Layout. */

:root {
  --fg: #1e2227;
  --muted: #5c646d;
  --line: #dfe3e8;
  --link: #1f5f8b;
  --bg-soft: #f6f7f9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--fg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
}

.wrap { max-width: 780px; margin: 0 auto; padding: 0 20px; }

a { color: var(--link); }

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  margin-bottom: 36px;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  font-size: 21px;
  font-weight: bold;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: .01em;
}
.site-header nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  margin-left: 18px;
}
.site-header nav a:first-child { margin-left: 0; }

h1 { font-size: 30px; line-height: 1.25; margin: 0 0 10px; }
h2 { font-size: 21px; margin: 36px 0 10px; }
h3 { font-size: 18px; margin: 26px 0 6px; }
p  { margin: 0 0 16px; }
ul { margin: 0 0 16px; padding-left: 22px; }
li { margin-bottom: 6px; }

.lede { font-size: 19px; color: var(--muted); margin-bottom: 24px; }
.contact { line-height: 1.9; }

.site-footer {
  margin-top: 56px;
  padding: 20px 0 36px;
  border-top: 1px solid var(--line);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .site-header nav a { margin-left: 0; margin-right: 16px; }
  h1 { font-size: 25px; }
}
