/* --- Header layout --- */
/* header height variable (single place to change) 

/* Header (fixed) - desktop & mobile */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
   /*height: var(--header-height); keep header height consistent */
  z-index: 100;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  overflow: visible; /* ✅ allow content to expand */
}

/* Header inner: keep horizontally aligned (logo left, nav right) */
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 0;
overflow: visible; /* ✅ prevent clipping */
}

.logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end; /* horizontal centering */
  align-items: center;     /* vertical centering */
width: 50%;
height: 80px;
max-width: 300px;
}

.logo img { height: 35px; width: auto; }

.main-navigation {position: relative; z-index: 1000;   flex: 1 1 auto; text-align: right;}

@media (max-width: 768px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .logo {
	 flex: 0 0 auto;
  display: flex;
  justify-content: center; /* horizontal centering */
  align-items: center;     /* vertical centering */
    width: 100%;
 margin: 0 auto;
margin-top: 10px;
  }


  .logo a {
    display: inline-block;
  }

  .logo img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .main-navigation {
    width: 100%;
  text-align: left;
    position: relative;
    display: block !important;
  }