/* Hardcoded Gulf Tech brand logo — not CMS-managed */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand-logo-img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.brand-logo-img--nav {
  height: 52px;
  width: auto;
  transition: transform 0.3s;
}
.brand-logo:hover .brand-logo-img--nav {
  transform: scale(1.04);
}
.brand-logo-img--footer {
  height: 48px;
  width: auto;
  /* Logo greens read better on dark footer with a light plate */
  background: rgba(250, 246, 236, 0.96);
  border-radius: 8px;
  padding: 6px 10px;
}
.brand-logo-img--portal {
  height: 48px;
  width: auto;
}
.brand-logo-img--auth {
  height: 56px;
  width: auto;
  background: rgba(250, 246, 236, 0.96);
  border-radius: 10px;
  padding: 6px 12px;
}
.brand-logo-img--admin {
  height: 36px;
  width: auto;
  background: rgba(250, 246, 236, 0.96);
  border-radius: 6px;
  padding: 4px 8px;
}
.brand-logo--admin {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(212, 166, 55, 0.25);
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.brand-logo--portal {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .brand-logo-img--nav { height: 42px; }
  .brand-logo-img--footer { height: 40px; }
  .brand-logo-img--portal { height: 34px; }
  .brand-logo-img--auth { height: 48px; }
}
