/* Load Outfit font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600&display=swap');

/* === GLOBAL === */
.kl-header,
.kl-header * {
  font-family: 'Outfit', sans-serif;
  box-sizing: border-box;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

/* === HEADER WRAPPER === */
.kl-header {
  background-color: #D9D7D1; /* black background */
  color: #fff;
  padding: 0;
  box-shadow: unset;
}

/* === NAVBAR LAYOUT === */
.kl-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

/* === LOGO LEFT === */
.kl-navbar__logo {
  height: 36px;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}

/* === MENU ITEMS RIGHT === */
.kl-navbar__content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}

/* === NAV MENU === */
.kl-navbar__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* === EACH ITEM === */
.kl-navbar__item {
  position: relative;
}

.kl-navbar__button {
  font-size: 14px;
  font-weight: 400;
  padding: 0.25rem 0.5rem;
  color: #2B2E34;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.kl-navbar__button:hover {
  color: #ccc;
}

/* === DROPDOWN ARROWS === */
.kl-navbar__parent > .kl-navbar__button span::after {
  content: ' ▾';
  font-size: 0.75rem;
  margin-left: 0.3rem;
}

/* === SUBMENU === */
.kl-navbar-submenu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color: #1a1a1a;
  min-width: 160px;
  z-index: 1000;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.kl-navbar__item:hover > .kl-navbar-submenu-wrapper {
  display: block;
}

.kl-navbar-submenu {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.kl-navbar-submenu__button {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 14px;
}

.kl-navbar-submenu__button:hover {
  background-color: #333;
}

.button.Navbar__button {
  display:none;
}

.kl-navbar__button.Navbar__button {
  display:none;
}

@media screen and (max-width: 920px) {
  .kl-navbar__content {
      justify-content: flex-start;
    .kl-navbar__menu {
    flex-direction: column;
    }
  }