body {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
}

.header {
  background: none;
  padding: 0.5em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 100px;
}

.burger {
  font-size: 2rem;
  cursor: pointer;
  display: block;
  padding: 0.5em;
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav.show ul {
  display: flex;
}

.nav ul li {
  position: relative;
  overflow: hidden;
}

.nav ul li a {
  position: relative;
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  color: #000; /* Keep this static */
  padding: 2.5em 1.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
  text-decoration: none;
  /* Removed text color transition */
}

.nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #03339F;
  transition: left 0.4s ease;
  z-index: -1;
  border-radius: 0 10px 10px 0;
}

.nav ul li a:hover::before {
  left: 0;
}

.nav ul li a:hover {
  /* Removed color change */
  color: #fff;
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }

  .nav ul {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    width: auto;
  }
}