/* =============================================================================
   HOME-HEADER.CSS — ENIBUSINESS Homepage: Site Header
   Scope   : home page only (/index.html)
   Version : 1
   ============================================================================= */


/* =============================================================================
   4. SITE HEADER
   ============================================================================= */

#site-header {
  display: flow-root;
  min-height: 84px;
  background-color: #000;
}

/* Right-side topbar cluster */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

@media (max-width: 768px) {
  .topbar-right {
    gap: 0.5rem;
  }

  #topbar-phone-number {
    display: none;
  }
}

/* QR code widget in the mobile menu overlay */
#animated-qr-link {
  display: block;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

#animated-qr-container {
  position: relative;
  width: 70px;
  height: 70px;
  margin: auto;
  background-color: #000;
  border-radius: 5px;
  overflow: hidden;
}

#qr-code-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

#qr-animation-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  background-color: #000;
  font-family: monospace;
  font-size: 7px;
  line-height: 1;
  color: var(--color-accent);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5px, 1fr));
  place-items: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

#qr-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 13px;
  z-index: 5;
  object-fit: contain;
}
