:root {
  --text-white-color: #ffffff;
  --text-black-color: #111111;
  --bg-green-color: rgb(112, 141, 55);
  --font-size-h1: 36px;
  --font-size-h2: 30px;
  --font-size-h3: 26px;
  --font-size-xlarge: 20px;
  --font-size-large: 18px;
  --font-size-medium: 16px;
  --font-size-small: 14px;
  --font-size-xsmall: 12px;
}

body{
  overflow-x: hidden;
}

.banner-width {
  width: 100%;
}

.ijvsnavtitle {
  text-decoration: none;
  color: white;
}

a.ijvsnavtitle:hover {
  color: #DBAF5A !important;
}


.nav {
  position: relative;
  width: 100%;
  border-top: 3px solid #DBAF5A;
  background-color: #164659;
  display: flex;
  /* flexbox layout */
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Hide the checkbox by default */
#nav-check {
  display: none;
}

/* Left side: Title */
.nav-header {
  flex: 1;
}

.nav-title a {
  font-size: 22px;
  color: white;
  text-decoration: none;
  padding: 10px;
}

/* Center: Links */
.nav-links {
  flex: 2;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 13px 10px;
}

.nav-links a:hover {
  transition: 0.4s;
  color: #DBAF5A;
}

/* Right: Search */
.nav-search {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-search form {
  display: flex;
  align-items: center;
}

.nav-search input {
  height: 35px;
  border-radius: 5px 0 0 5px;
}

.nav-search button {
  border: 2px solid #DBAF5A;
  background-color: #DBAF5A;
  border-radius: 0 5px 5px 0;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-search button:hover {
  background-color: transparent;
  color: #DBAF5A;
}

/* Hamburger Button */
.nav-btn {
  display: none;
  /* hidden on desktop */
}

.nav-btn label {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 13px;
  cursor: pointer;
}

.nav-btn label span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: white;
}

/* Responsive for mobile */
@media (max-width: 1024px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-btn {
    display: block;
    /* show hamburger */
  }

  .nav-links {
    order: 2;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    /* hidden by default */
  }

  /* Show links when checkbox checked */
  #nav-check:checked~.nav-links {
    display: flex;
  }

  .nav-search {
    order: 3;
    width: 100%;
    margin-top: 10px;
    justify-content: center;
  }

  .nav-search form {
    width: 100%;
    max-width: 400px;
  }

  .nav-search input {
    flex: 1;
  }

}