.site-header {
  background-color: #5e0190; /* deep purple */
  padding: 10px 0;
  margin-bottom: 0; /* ensure no extra space below */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.logo {
  margin-bottom: 0; /* tighten space below logo */
}

.logo img {
  max-height: 250px;
  height: auto;
  width: auto;
  display: block;
}

/* === Mobile Header Layout === */
@media (max-width: 767px) {
  .header-inner {
    flex-direction: column; /* Stack logo and hamburger */
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
  }

  .logo {
    order: 1;
    text-align: center;
    margin-bottom: 10px;
  }

  .logo img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    max-height: 180px; /* slightly smaller logo for mobile */
  }

  .mobile-menu-toggle {
    order: 2;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    margin-top: 10px; /* spacing below logo */
  }

  .main-navigation {
    order: 3;
    width: 100%;
    text-align: center;
  }
}
