/**
 * Helper Home — Logo display
 * Transparent gold logo must stay large and readable on desktop & mobile.
 */

.site-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex-shrink: 0;
}

/* Header — large enough to read icon + "Helper Home" + tagline */
.site-logo-header {
  height: 72px;
  max-height: 72px;
  width: auto;
  max-width: min(280px, 62vw);
}

@media (min-width: 640px) {
  .site-logo-header {
    height: 84px;
    max-height: 84px;
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  .site-logo-header {
    height: 96px;
    max-height: 96px;
    max-width: 340px;
  }
}

@media (min-width: 1280px) {
  .site-logo-header {
    height: 108px;
    max-height: 108px;
    max-width: 380px;
  }
}

/* Mobile drawer */
.site-logo-mobile {
  height: 88px;
  max-height: 88px;
  max-width: 300px;
}

/* Footer — prominent brand mark */
.site-logo-footer {
  height: 120px;
  max-height: 120px;
  max-width: 360px;
}

@media (min-width: 768px) {
  .site-logo-footer {
    height: 140px;
    max-height: 140px;
    max-width: 420px;
  }
}

/* Header row needs room for taller logo */
#mainHeader a[aria-label*="Helper Home"],
#mainHeader a[aria-label*="Homepage"] {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0;
}

#mainHeader .flex.items-center.justify-between {
  min-height: 80px;
  gap: 1rem;
}

@media (min-width: 1024px) {
  #mainHeader .flex.items-center.justify-between {
    min-height: 108px;
  }
}

#mainHeader.header-transparent {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

#mainHeader.header-scrolled {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

#mainHeader.header-scrolled .site-logo-header {
  height: 68px;
  max-height: 68px;
  max-width: 240px;
}

@media (min-width: 1024px) {
  #mainHeader.header-scrolled .site-logo-header {
    height: 78px;
    max-height: 78px;
    max-width: 280px;
  }
}

/* 404 / legal compact headers */
body > header .site-logo-header {
  height: 72px;
  max-height: 72px;
  max-width: 260px;
}
