
/* InfoMind header hotfix v2 — bigger logo image only
   - Change ONLY the image size (no extra margins)
   - Desktop & mobile compatible
   - If you want larger/smaller, change --logo-size below.
*/
:root{
  /* Default: 96px on large screens, scales down on smaller */
  --logo-size: clamp(72px, 7vw, 112px);
}

/* Enlarge ONLY the image next to the "InfoMind" text */
header .logo img{
  width: var(--logo-size);
  height: var(--logo-size);
  object-fit: contain;
  border-radius: 14px; /* optional, keep previous rounding */
}

/* Keep spacing tidy */
header .logo{
  gap: 1rem;
  align-items: center;
}

/* Slightly increase header height so the taller logo fits nicely */
header nav{
  min-height: calc(var(--logo-size) + 12px);
}
