/* ═══════════════════════════════════════════════════════════════
   VIVEREA — Header Branding (SaaS-Style)
   Logo-Layout, Branding-Container, Navbar-Schatten
   ═══════════════════════════════════════════════════════════════ */

/* Navbar: Leichter Schatten */
nav[style*="height:72px"],
nav[style*="height:60px"] {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
}

/* Branding-Container (Logo-Link): vertikale Linie links, extra Padding unten */
nav > a:first-of-type {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0 1rem 12px 1.25rem !important;
  margin-left: -1.5rem;
  padding-left: 1.5rem !important;
  border-left: 1px solid #E5E7EB;
  min-height: 72px;
  box-sizing: border-box;
}

/* Logo: 25–30 % größer, Outline für Sichtbarkeit */
nav > a:first-of-type img[alt="VIVEREA"],
nav > a:first-of-type img[alt="VIVEREA Logo"] {
  height: 62px !important; /* 48px × 1.29 ≈ 25–30 % größer */
  width: auto !important;
  filter: brightness(0) opacity(0.9) drop-shadow(0 0 0.5px rgba(0, 0, 0, 0.3)) !important;
}

/* Mobile: Logo etwas kleiner, Branding an reduzierte Nav-Padding anpassen */
@media (max-width: 768px) {
  nav > a:first-of-type img[alt="VIVEREA"],
  nav > a:first-of-type img[alt="VIVEREA Logo"] {
    height: 48px !important;
  }
  nav > a:first-of-type {
    margin-left: -1rem;
    padding: 0 0.75rem 10px 1rem !important;
    min-height: 60px;
  }
}
@media (max-width: 480px) {
  nav > a:first-of-type {
    margin-left: -0.75rem;
    padding-left: 0.75rem !important;
  }
}
