/* Alltagshelfer Schleswig-Holstein */
:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --accent: #2b6cb0;
  --text: #1a202c;
  --text-muted: #4a5568;
  --bg: #ffffff;
  --bg-soft: #f7fafc;
  --border: #e2e8f0;
  --radius: 8px;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --max: 1100px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.site-header {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0; gap: 1rem;
}
.logo img { height: 72px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.35rem; flex-wrap: wrap; }
.nav a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav a:hover, .nav a.active { color: var(--accent); text-decoration: none; }
.btn {
  display: inline-block; background: var(--accent); color: #fff !important;
  padding: 0.65rem 1.25rem; border-radius: var(--radius); font-weight: 600;
  text-decoration: none !important; border: 2px solid var(--accent);
}
.btn:hover { background: var(--primary); border-color: var(--primary); }
.btn-outline { background: transparent; color: var(--accent) !important; }
.btn-outline:hover { background: var(--accent); color: #fff !important; }
.btn-outline-light {
  background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.85);
}
.btn-outline-light:hover { background: #fff; color: var(--primary) !important; }
.nav-toggle {
  display: none; background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--primary);
}
.hero {
  background: linear-gradient(180deg, #edf2f7 0%, #fff 100%);
  padding: 3rem 0 2.5rem;
}
.hero-photo {
  position: relative;
  background: var(--primary) center/cover no-repeat;
  background-image: linear-gradient(105deg, rgba(26,54,93,0.82) 0%, rgba(26,54,93,0.55) 45%, rgba(26,54,93,0.35) 100%), url('../img/deich-schafe.jpg');
  color: #fff;
  padding: 4rem 0 3.5rem;
  min-height: 320px;
}
.hero-photo h1 { color: #fff; font-size: clamp(1.85rem, 4vw, 2.5rem); margin-bottom: 0.5rem; line-height: 1.25; }
.hero-photo .tagline { color: #bee3f8; font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.hero-photo p { color: rgba(255,255,255,0.95); max-width: 36rem; }
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem); color: var(--primary);
  margin-bottom: 0.5rem; line-height: 1.25;
}
.tagline { font-size: 1.15rem; color: var(--primary-light); font-weight: 600; margin-bottom: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
section { padding: 2.75rem 0; }
section.alt { background: var(--bg-soft); }
h2 { color: var(--primary); font-size: 1.5rem; margin-bottom: 1rem; }
h3 { color: var(--primary); font-size: 1.15rem; margin-bottom: 0.5rem; }
.lead { font-size: 1.05rem; color: var(--text-muted); max-width: 42rem; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.25rem; }
.mt-3 { margin-top: 2rem; }
.text-center { text-align: center; }
.grid-2 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem;
}
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.35rem; box-shadow: var(--shadow);
}
.card ul { margin-left: 1.1rem; color: var(--text-muted); }
.card li { margin-bottom: 0.35rem; }
.notice {
  background: #ebf8ff; border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0;
}
.steps { counter-reset: step; list-style: none; }
.steps li { position: relative; padding-left: 3rem; margin-bottom: 1.5rem; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 2rem; height: 2rem;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.photo-placeholder {
  background: #e2e8f0; border: 2px dashed #a0aec0; border-radius: var(--radius);
  min-height: 140px; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start;
}
.portrait {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  max-width: 320px;
}
.portrait img { width: 100%; height: auto; object-fit: cover; }
.site-footer {
  background: var(--primary); color: #e2e8f0; padding: 2.5rem 0 1.5rem; margin-top: 1rem;
}
.site-footer a { color: #bee3f8; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; margin-bottom: 1.5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1rem;
  font-size: 0.9rem; color: #a0aec0;
}
@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; width: 100%; flex-direction: column;
    align-items: flex-start; padding: 0.75rem 0 1rem; gap: 0.85rem;
  }
  .nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .logo img { height: 58px; }
  .contact-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 260px; margin: 0 auto; }
}
