.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background-color: rgba(22, 34, 40, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .logo {
  display: flex;
  align-items: center;
}

.site-header .logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header .logo-link svg {
  height: 48.4px;
  width: auto;
  display: block;
}

.site-header .logo-link img {
  height: 48.4px;
  width: auto;
  display: block;
}

.site-header nav a {
  margin-left: 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: #EC6900;
}

/* Hamburger toggle button - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger animation when open */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.with-shared-header {
  padding-top: 88px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }

  .site-header .logo-link svg,
  .site-header .logo-link img {
    height: 36px;
  }

  .nav-toggle {
    display: block;
  }

  .site-header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background-color: rgba(22, 34, 40, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1005;
  }

  .site-header nav.is-open {
    right: 0;
  }

  .site-header nav a {
    margin-left: 0;
    padding: 14px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.with-shared-header {
    padding-top: 64px;
  }
}
