:root {
  --header-height:50px;
  --footer-bg: #2c2c2c;
  --menu-hover1:#85754E;
  --menu-hover2:#9F9271;
  --menu-hover3:#C1A663;
}

body::-webkit-scrollbar { width: 0.35rem;}
body::-webkit-scrollbar-track { box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);}
body::-webkit-scrollbar-thumb { background-color: darkgrey;outline: 1px solid slategrey;}

/* smooth-scroll CSS */
html { scroll-behavior: smooth;}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height:1.25;
}
body {
  color: #eee;
  margin: 0;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
  font-feature-settings: "liga" on;
  overflow-x:hidden;
}

body {  margin: 0;font-family: sans-serif;}

/********************************** START NAV ********************************************/
header{
	/* position:absolute; */
	top:0;
	left:0;
	width:100%;
	/* Flex box definition */
	display:flex;
	flex-direction:row;
	/*align-items:space-between;*/
	justify-content: space-between;
	z-index:10;
	color:white;
	background: #000;
}

nav{
	display:flex;
	flex-direction:row;
	flex-basis:100%;
	text-align: center;
	justify-content: space-around;
	/* align-items: space-around; */
  color:#ddd;
}
nav a {
  color:#ddd;
}
nav a:hover {
  color:#ddd;
}

.navbar {
	font-size: 0.95rem;
}

header a, nav a {
	text-decoration:none;
  color:#ddd;
  font-size: 0.95rem;
}

header a:visited, nav a:visited{
	text-decoration:none;
	color:#eee;
}

nav li{
	list-style: none;
	margin-left:20px;
}
nav a:hover,
nav .nav-item a:hover,
.dropdown-content a:hover {
	color:#85754E;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
	flex-basis:100%;
  /* padding: 10px 20px; */
  padding: 0;
  background-color: #111;
}
.pct80 {
	width: 80%;
	font-size: 85%;
	text-align: left!important;
}

.nav-item {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  padding: 0;
}

.nav-item:hover {
  background-color: #575757;
}

.nav-item {
  color: white;
  text-decoration: none;
  /* padding: 10px 15px; */
	font-size: 0.85rem;
  transition:all 0.5s;
}

.nav-item:hover {
  background-color: #272727;
  border-radius:20px;
  transition:all 0.25s;
  text-shadow:0.25px 0.25px #9F9271, 0.5px 0.5px #C1A663;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
.hamburger:hover {
  background: none;
}

.dropdown {
  position: relative;
  display: inline-block;
  border-radius:10px;
  font-size: 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content .dropdown-item {
  display: none;
  color: #ddd;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content .dropdown-item:hover {
  background-color: #222;
  transition:all 1s;
}

.dropdown:hover .dropdown-content {
  display: block;
  transition:all 1s;
}
.smaller {
	font-size: 80%;
}


@media (max-width: 750px) {
  .nav-item {
    font-size: 0.9rem;    
  }
  header {
    height: 50px;
    max-height:50px;
  }

}
@media (max-width: 650px) {
  .nav-item {
    font-size: 0.75rem;    
  }
  header {
    height: 50px;
    max-height:50px;
  }
}
@media (max-width: 568px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  header {
    height: 50px;
    max-height:50px;
  }

  .nav-item {
    /* padding: 10px 0; */
    font-size: 1rem;
  }
  .hamburger {
    display: block;
    top: 0;
    margin-top: 5px;
  }
  .nav-item img {
    display:none;
  }
  header {
    height: 50px;
    max-height: 50px;
  }
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-item {
    display: none;
    padding: 1px 0; 
		font-size: 1rem;
		line-height:1.5;
  }

	.navbar.open .nav-item {
    display: block;
  }

	.dir_arrow,
	.dropdown-content,
  .dropdown-content .nav-item.dropdown-item,
  .nav-item.dir_arrow,
  .mobile-mode .nav-item.dir_arrow {
		display: none;
	}
  header nav.navbar.open {
    height:50px;
    max-height:50px;
  }

}

/********************************** END NAV ********************************************/
