/* Alltagshelfer Mecklenburg – clean modern stylesheet */
:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --accent: #2b6cb0;
  --text: #1a202c;
  --text-muted: #4a5568;
  --bg: #ffffff;
  --bg-soft: #f7fafc;
  --border: #e2e8f0;
  --green: #38a169;
  --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;
}

/* Header */
.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: 78px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.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(--primary);
  color: #fff !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--primary-light);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Sections */
section {
  padding: 3rem 0;
}

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

h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  color: var(--primary-light);
  margin: 1.25rem 0 0.5rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.card ul {
  margin: 0.5rem 0 0 1.1rem;
}

.card li { margin-bottom: 0.35rem; }

/* Notice box */
.notice {
  background: #ebf8ff;
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

/* Table */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 0.65rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

tr:nth-child(even) { background: #f7fafc; }

/* Map */
.map-box {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.map-box img {
  width: 100%;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: #e2e8f0;
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.site-footer a { color: #bee3f8; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Contact form simple */
.contact-box {
  max-width: 520px;
}

.contact-box p { margin-bottom: 0.75rem; }

.contact-list {
  list-style: none;
  margin: 1rem 0;
}

.contact-list li {
  margin-bottom: 0.5rem;
}

/* Portrait */
.portrait {
  border-radius: var(--radius);
  max-width: 260px;
  box-shadow: var(--shadow);
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.small { font-size: 0.9rem; color: var(--text-muted); }
