/* Burger menu styles */
.custom-header-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  position: absolute;
  left: 16px;
  top: 18px;
  z-index: 200;
}
.custom-header-burger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}

.custom-header-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding-top: 80px;
}
.custom-header-mobile-menu.open {
  display: block;
}
.custom-header-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 320px;
}
.custom-header-mobile-menu li {
  margin: 18px 0;
  text-align: center;
}
.custom-header-mobile-menu a {
  font-size: 22px;
  color: #222;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.custom-header-mobile-menu a:hover {
  background: #ffe000;
  color: #111;
}
/* font-family fully removed for rollback */
/* Custom Header Styles for Alternative ALU */
.custom-header {
  background: #fff;
  /* font-family rolled back */
  padding: 0 0 0 0;
  width: 100%;
  z-index: 100;
}
.custom-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 80px;
}
.custom-header-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.custom-header-logo {
  align-items: center;
  margin: 0 40px;
  flex: 0 0 auto;
  justify-content: center;
}
.custom-header-nav > .custom-header-menu:first-child {
  flex: 1;
  justify-content: flex-end;
}
.custom-header-nav > .custom-header-logo {
  flex: 0 0 auto;
}
.custom-header-nav > .custom-header-menu:last-child {
  flex: 1;
  justify-content: flex-start;
}
.custom-header-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.custom-header-menu li {
  margin: 0 18px;
  position: relative;
}
.custom-header-menu li.active a,
.custom-header-menu li a.active {
  background: #ffe000;
  color: #222;
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: bold;
}
.custom-header-menu li a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.custom-header-menu li a:hover {
  background: #ffe000;
  color: #111;
  transform: scale(1.08);
}
.custom-header-logo {
  display: flex;
  align-items: center;
  margin: 0 40px;
}
.custom-header-logo img {
  height: 140px;
  margin-right: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-header-logo img:hover {
  transform: scale(1.15);
}
.custom-header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}
.logo-subtitle {
  font-size: 20px;
  font-weight: bold;
  color: #222;
}
.logo-desc {
  font-size: 13px;
  color: #888;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}
.lang-switcher a {
  display: inline-block;
  padding: 2px;
  border-radius: 4px;
  transition: background 0.2s;
}
.lang-switcher a.active {
  background: #ffe000;
}
.lang-switcher img {
  height: 20px;
  width: 28px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .custom-header-nav {
    flex-direction: row;
    height: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .custom-header-burger {
    display: flex;
  }
  .custom-header-menu,
  .custom-header-logo {
    display: none !important;
  }
}

@media (min-width: 901px) {
  .custom-header-burger {
    display: none !important;
  }
  .custom-header-menu,
  .custom-header-logo {
    display: flex !important;
  }
  .custom-header-mobile-menu {
    display: none !important;
  }
}
