/*
 * VOMA Child Theme – landingpage.css
 *
 * Reduzierte Header-/Footer-Varianten für Landingpages und den
 * Bestandskunden-Service-Bereich – bewusst ohne Hauptnavigation, um beim
 * Formular/Modal keine Ablenkung zu bieten (Conversion-Prinzip, bereits auf
 * Live produktiv für Vertragscheck, Danke-Seite, Privatkunden,
 * Handwerksbetriebe, Baufinanzierung, Wohngebäudeversicherung – siehe
 * docs/sprint-log.md, Nachtrag "Header/Footer-Varianten").
 *
 * Quellen: Live-Customizer-CSS (Post-ID 5009, GeneratePress), auf
 * VOMA-Design-Tokens umgestellt statt hartkodierter Einzelwerte.
 */

/* ============================================================
   LANDINGPAGE-HEADER (.voma-lpbar)
   Logo + ein Kontaktweg (Telefon, per JS ggf. WhatsApp), keine Navigation.
   ============================================================ */

.voma-lpbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--voma-border);
}

.voma-lpbar__inner {
  max-width: var(--voma-max);
  margin-inline: auto;
  padding: 14px var(--voma-space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--voma-space-4);
}

.voma-lpbar__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.voma-lpbar__contact {
  text-decoration: none;
  color: rgba(17, 24, 39, .92);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  padding: 8px var(--voma-space-3);
  border-radius: var(--voma-radius-pill);
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .06);
  white-space: nowrap;
  transition:
    transform var(--voma-transition-base),
    background var(--voma-transition-base),
    border-color var(--voma-transition-base);
}

.voma-lpbar__contact:hover,
.voma-lpbar__contact:focus-visible {
  background: rgba(0, 0, 0, .06);
  border-color: rgba(0, 0, 0, .10);
  transform: translateY(-1px);
}

/* ============================================================
   SERVICEBEREICH-HEADER (.voma-service-header)
   Für Bestandskunden-Check & vergleichbare Service-Formulare.
   ============================================================ */

.voma-service-header {
  background: #ffffff;
  border-bottom: var(--voma-border);
  padding: var(--voma-space-5) var(--voma-space-5);
}

.voma-service-header__inner {
  max-width: var(--voma-max-service);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--voma-space-4);
  flex-wrap: wrap;
}

.voma-service-header__logo img {
  height: 32px;
  width: auto;
  display: block;
}

.voma-service-header__meta {
  display: flex;
  align-items: center;
  gap: var(--voma-space-6);
}

.voma-service-header__kicker {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .45);
}

.voma-service-header__phone {
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #111827;
}

.voma-service-header__phone:hover,
.voma-service-header__phone:focus-visible {
  opacity: .7;
}

/* ============================================================
   SERVICEBEREICH-FOOTER (.voma-service-footer)
   Zentrierter Vertrauens-CTA statt vollem Footer-Grid.
   ============================================================ */

.voma-service-footer {
  background: #ffffff;
  padding: var(--voma-space-8) var(--voma-space-5);
  border-top: var(--voma-border);
  text-align: center;
}

.voma-service-footer__inner {
  max-width: 45rem;
  margin-inline: auto;
}

.voma-service-footer__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 var(--voma-space-3);
  color: #111827;
}

.voma-service-footer__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, .65);
  margin: 0 0 var(--voma-space-6);
}

.voma-service-footer__actions {
  display: flex;
  justify-content: center;
  gap: var(--voma-space-4);
  flex-wrap: wrap;
}

@media (max-width: 48rem) {
  .voma-service-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--voma-space-4);
  }

  .voma-service-header__meta {
    gap: var(--voma-space-4);
  }

  .voma-service-footer__actions {
    flex-direction: column;
    width: 100%;
  }

  .voma-service-footer__actions .voma-btn {
    width: 100%;
  }
}
