/* Site header: clean white bar, one primary action */
.au-header .navbar-area {
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid #e8ecf3;
}

.au-header .navbar-area.is-sticky {
  box-shadow: 0 8px 30px rgba(6, 18, 65, 0.08);
}

.au-header .main-nav {
  max-width: none;
  background: #fff;
}

.au-header .main-nav .container-fluid {
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: clamp(16px, 4vw, 80px);
}

.au-header .main-nav nav.navbar {
  min-height: 88px;
  padding: 0;
}

/* Brand */
.au-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  text-decoration: none;
}

.au-brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.au-brand-mark path {
  fill: none;
  stroke: #ed2128;
  stroke-width: 62;
}

.au-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.au-brand-name {
  font-family: "Nunito", "Inter", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #111827;
}

.au-brand .au-brand-tag {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #4a5260;
}

.au-header .navbar-brand {
  padding: 0;
  margin-right: 24px;
  border-right: 0;
}

.au-brand,
.au-brand * {
  text-transform: none;
  letter-spacing: normal;
}

.au-header .mobile-nav .mobile-brand .au-brand-mark {
  width: 36px;
  height: 36px;
}

.au-header .mobile-nav .mobile-brand .au-brand-name {
  font-size: 18px;
}

/* Menu links */
.au-header .main-nav nav .navbar-nav .nav-item > a {
  margin-left: 14px;
  margin-right: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1d2433;
}

.au-header .main-nav nav .navbar-nav .nav-item:hover > a,
.au-header .main-nav nav .navbar-nav .nav-item > a.active {
  color: #d0191f;
}

/* Right-hand group */
.au-header .navbar-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

.au-header .navbar-option-item {
  margin-left: 0;
}

.au-header .navbar-option-language button {
  height: 44px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1d2433;
}

/* Search: a round icon that opens into a field */
.au-nav-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 44px;
  border-radius: 999px;
  background: #f1f4f9;
  transition: background-color 0.2s ease;
}

.au-nav-search-icon {
  width: 44px;
  height: 44px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1d2433;
  cursor: pointer;
}

.au-nav-search input {
  width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: #1d2433;
  transition: width 0.25s ease, padding 0.25s ease;
}

.au-nav-search:focus-within {
  background: #e8edf5;
  box-shadow: 0 0 0 2px rgba(0, 103, 218, 0.25);
}

.au-nav-search:focus-within input,
.au-nav-search input:not(:placeholder-shown) {
  width: 180px;
  padding-right: 16px;
}

/* Buttons */
.au-nav-btn,
.au-nav-btn:focus {
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.au-header .au-nav-btn-outline {
  border: 1.5px solid #cfd7e4;
  background: #fff;
  color: #061241;
}

.au-header .au-nav-btn-outline:hover {
  border-color: #061241;
  color: #061241;
}

.au-header .au-nav-btn-solid,
.au-header .au-nav-btn-solid:focus {
  border: 1.5px solid #061241;
  background: #061241;
  color: #fff;
}

.au-header .au-nav-btn-solid:hover {
  background: #0d2372;
  border-color: #0d2372;
  color: #fff;
}

.au-nav-btn:focus-visible {
  outline: 2px solid #0067da;
  outline-offset: 2px;
}

.au-nav-avatar {
  width: 26px;
  height: 26px;
  margin-left: -10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ed2128;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

/* Laptops: tighten spacing so everything stays on one line */
@media (min-width: 1200px) and (max-width: 1500px) {
  .au-header .main-nav nav .navbar-nav .nav-item > a {
    margin-left: 8px;
    margin-right: 8px;
    font-size: 14px;
  }

  .au-nav-btn,
  .au-nav-btn:focus {
    padding: 0 14px;
    font-size: 13px;
  }

  .au-header .navbar-brand {
    margin-right: 12px;
  }

  .au-brand .au-brand-tag {
    font-size: 10px;
  }
}
