/* Header Styles */
#header {
  height: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
}

#header.scrolled {
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  background: var(--light-color);
  /* display: none; */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

#header .logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#header .logo>a {
  font-size: 2rem;
  color: var(--extra-color);
  font-weight: bold;
  transition: all .3s ease;
}

#header .logo>a span {
  color: var(--dark-text-color);
  border-bottom: 2px solid var(--extra-color);
  transition: all .3s ease;
}


.nav-menu li {
  /* background-color: red; */
  padding: 0 1rem;
}

.nav-menu a {
  color: var(--dark-text-color);
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: '';
  width: 0;
  height: 2px;
  background: var(--extra-color);
  /* background: red; */
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

#header .nav-menu {
  display: flex;

  /* background-color: var(--dark-text-color); */
}

.hamburger {
  display: none;
  cursor: pointer;
}