.custom-navbar {
  background-color: white;
}

.menu a, .desktop-menu a {
  color: black;
  font-size: 15px;
}

.menu a:hover, .desktop-menu a:hover, .alt-btn:hover {
  border: 1px solid #0A4019;
  background-color: #0A4019;
  border-radius: 53px;
  padding: 10px 25px;
  color: white;
}

.alt-btn {
  border-radius: 50px;
  padding: 10px 25px;
  border: 1px solid black;
}

.header {
  position: fixed;
  background-color: white;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #0000001f;
  height: 89px;
  width: 100%;
  max-width: 1950px;
}

.custom-navbar img {
  cursor: pointer;
}

hr {
  width: 100%;
}

/* Mobile Menu Hidden by Default */
.menu-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  color: black;
  z-index: 100;
  padding: 4rem 3rem 12rem;
  transition: left 0.2s ease;
}

.menu-container.active {
  display: block;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  height: 100%;
}

.menu ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 1rem 0px 0px 0px;
  height: 100%;
}

.desktop-menu ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  margin-bottom: 0px;
  height: 100%;
  gap: 3rem;
}

.desktop-menu {
  display: none;
}


/* Desktop Layout */
@media (min-width: 1200px) {
  .desktop-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .menu-container, #menu-toggle {
    display: none;
  }

  .header {
    gap: 15%;
  }
}

@media (min-width: 1400px) {
  .header {
    gap: 25%;
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }
}