@charset "UTF-8";

* {
    box-sizing: border-box;
}



/*--------------- TOP NAV AREA ----------------*/
/*-- floated columns left and right side nav --*/

nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 920;
}

.menu-phone {
  color: #d9f349;
  font-size: 22px;
  position: absolute;
  top: 25px;
  right: 32px;
}

.menu-nav {
  overflow: hidden;
  background-color: #2F2E2E;
  height: 75px;
  width: 100vw;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-nav-centered {
  overflow: hidden;
  background-color: #2F2E2E;
  height: 75px;
  width: 100%;
  top: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-center {
  margin-right: auto;
  margin-left: auto;
  width: 100vw;
}
.topnav {
  width: 100vw;
  font-family: 'Barlow-Regular';
  display: flex;
  justify-content: center;
  align-items: center;
}

.topnav a {
  float: left;
  color: #fff;
  text-align: center;
  padding: 14px 12px 6px 12px;
  text-decoration: none;
  font-size: 16px;
}
.active {
  color: #d9f349;
}

.topnav a:hover {
  color: #d9f349;
}

.menu-mobile {
  display: none;
}

.header--underline {
  position: relative;
  display: inline-block;
  padding: 8px 16px;
  color: #c44316;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.header--underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 2px;
  background: #65544e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.header--underline:hover::after {
  transform: scaleX(1);
}

.header--underline:hover {
  color: #5d321b; /* optional hover color change */
}



@media (max-width: 800px) {
/*--------------- TOP NAV AREA ----------------*/
/*-- floated columns left and right side nav --*/
.menu-phone {
  padding-top: 28px;
  font-size: 14px;
}
.topnav a {
  padding: 14px 9px;
  font-size: 14px;
}
}



/*------------- TOP NAV AREA MOBILE -----------*/
/*-- floated columns left and right side nav --*/
@media (max-width: 700px) {
nav {
  position: absolute;
  width: 100%;
  top: 0px;
  z-index: 900;
}
.menu-phone {
  width: 100%;
  height: 50px;
    float: none;
    padding: 2px;
  background-color: #2F2E2E;
  font-size: 28px;
}


/*-- right side top nav with black background --*/
.menu-nav {
  display: none;
  }
.menu-nav-centered {
  display: none;
  }
.menu-mobile {
  display: block;
  background-color: #2F2E2E;
  text-align: center;
  padding-top: 71px;
  padding-bottom: 40px;
  margin-top: 0px;
  position: relative;
}
.menu-mobile::before {
  content: "";
  display: block;
  background: url(../images/VibeLogo1.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100%; /* or a specific height */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: opacity(20%);
}
.menu-mobile a {
  height: 29px;
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.menu-mobile a:hover {
  color: #d9f349;
}
}
/*-------------END TOP NAV------------------------------------------------------------------------*/




/*------------------ SIDE NAV ------------------*/
.sideNav {
  width: 170px;
  background-color: rgba(36,36,36,0.90);
  position: fixed;
  top: 300px;
  padding: 20px;
  text-align: right;
  z-index: 350;
}



.sideNav a {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 25px;
}
.sideNav a:hover {
  color: #d9f349;
}

@media (max-width: 700px) {
.sideNav {
    display: none;
  }
}
