/* === Fixed Site Header Row === */
.site-header-row {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* prevent shift when scrollbar appears */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 9999;
  box-sizing: border-box;
}

/* === Logo Column === */
.logo-column {
  flex: 0 0 auto; /* don’t grow, don’t shrink */
  width: 5% !important;
  height: 50px !important;
}

.logo-image {
  width: 250px !important;
  height: auto !important;

  max-width: 200px;
  display: block;
}

/* === Navigation Column === */
.main-navigation-column {
  flex: 1; /* takes remaining space */
  display: flex;
  width: 90% !important;
  height: 60px !important;
  justify-content: flex-end;
  align-items: center;
  padding-left: 1rem;
  box-sizing: border-box;
}

/* Responsive support (optional tweaks) */
@media (max-width: 768px) {
  .site-header-row {
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
  }

  .main-navigation-column {
    padding-left: 0.5rem;
  }

  .logo-column {
    max-width: 180px;
  }

  .logo-image {
    width: 100%;
    height: auto;
  }
}
