/* ── Neuer Site-Header (Rollout 2026-07) ──
   Wird NACH style.css geladen und überschreibt die alten .header-Regeln. */

.header {
  background: #ffffff;
  border-bottom: 1px solid #e3ded4;
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 0;
  transition: none;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header .logo-img { height: 46px; width: auto; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.main-nav a {
  text-decoration: none;
  color: #29343c;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: #1B5E7B; border-bottom-color: #1B5E7B; }

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1B5E7B;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 1.1rem !important;
  border-radius: 8px;
  border-bottom: none !important;
  white-space: nowrap;
}
.btn-tel:hover { background: #143d52; color: #fff !important; }
.btn-tel svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.nav-toggle { display: none; margin-left: auto; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle svg { width: 26px; height: 26px; stroke: #1B5E7B; stroke-width: 2; fill: none; stroke-linecap: round; }

@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e3ded4;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 0 0.8rem;
    box-shadow: 0 12px 24px rgba(27,94,123,0.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85rem 1.4rem; border-bottom: 1px solid #e3ded4; font-size: 1rem; }
  .main-nav a:last-child { border-bottom: none; }
  .btn-tel { margin: 0.8rem 1.4rem 0; justify-content: center; border-radius: 8px !important; }
  .nav-toggle { display: block; }
}

@media print {
  .header { display: none !important; }
}
