﻿.header-wrapper {
  display: flex;
  background-color: var(--black);
  padding: var(--spacing-2) var(--spacing-5);
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** Start of primary nav ******/
#menu-button {
  display: none;
}
nav.mobile {
  display: none;
}

nav.primary {
  padding: 0;
  display: flex;
  /* display: inline-block; */
  margin: 0;
  width: auto;
  position: relative;
  align-items: center;
  justify-content: center;
}
nav.primary ul {
  margin: 0;
  padding: 0;
}

/* Top level links */
nav.primary ul li {
  display: inline-block;
  margin: 0;
  list-style-type: none;
  width: auto;
}
nav.primary ul li a {
  color: var(--background);
  font: var(--body-m-bold);
  text-decoration: none;
  display: block;
  margin: 0;
  padding-left: 1rem;
  text-align: center;
  -webkit-transition: 0.4s ease-in;
  -moz-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
nav.primary ul li a:hover {
  color: var(--light-blue-3);
}

/* ================= NOT IN USE =================*/
/*------------------- Appearance of the sub-level links ------------------- */
nav.primary ul li li a {
  font-size: 16px;
  line-height: 16px;
  padding: 10px;
  color: #fff;
  background: #181818;
  text-align: left;
  border-right: none;
  border-left: none;
  border-bottom: #303030 solid 1px;
}
/* Appearance of the sub-level links on hover */
nav.primary ul li li a:hover {
  color: var(--light-blue-3);
}

/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
  display: none;
  position: absolute;
}
nav.primary ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}
nav.primary ul li:hover > ul {
  display: block;
  line-height: 18px;
  z-index: 100;
}
nav.primary ul ul li {
  float: none;
  width: 270px;
  position: relative;
  margin: 0;
  display: block;
}

@media screen and (max-width: 1730px) {
  nav.primary ul li a {
  }
}

@media screen and (max-width: 1575px) {
  nav.primary ul li a {
  }
}

/******** End of primary Nav ***************/

/*==============================
	Mobile Nav Styles			
================================*/
@media screen and (max-width: 1000px) {
  nav.primary {
    display: none;
  }
  #menu-button {
    width: 100%;
    font: var(--body-l-bold);
    display: inline-block;
    position: relative;
    z-index: 400; /* needs to be lower than nav.mobile, adjust as needed */
    text-align: right;
  }
  #menu-button a {
    color: var(--background);
    text-decoration: none;
    padding: 0 0 0 var(--spacing-2);
  }
	
  #menu-button a:hover {
    color: var(--light-blue-2);
    cursor: pointer;
  }


  nav.mobile {
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: var(--black);
    color: var(--background);
    z-index: 500; /* needs to be higher than #menu-button, adjust as needed */
    overflow: auto;
  }

  nav.mobile h2 {
    display: flex;
    position: relative;
    align-items: center;
    font: var(--heading-h3);
    color: var(--background);
    padding: var(--spacing-2);
    border-bottom: 5px solid var(--light-blue-2);
  }

  /* MENU CLOSE 'X' BUTTON */
  nav.mobile .menu-toggle {
    position: absolute;
    font: var(--body-m-bold);
    color: var(--background);
    width: 30px;
    height: 30px;
    text-decoration: none;
    right: 5%;
  }
  nav.mobile .menu-toggle:hover {
    /* Menu close button on hover */
    color: var(--light-blue-3);
  }

  /* MENU LIST STYLE */
  nav.mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav.mobile ul li {
    font: var(--body-m-bold);
    border-top: 1px solid var(--light-grey);
    position: relative;
  }

  nav.mobile hr {
    border: none;
    border-top: 5px solid var(--light-blue-3);
    margin: 0;
  }

  /* FIRST LEVEL */
  nav.mobile ul li a {
    position: relative;
    display: block;
    padding: var(--spacing-2);
    color: var(--background);
    text-decoration: none;
    /* text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3); */
    text-align: left;
    transition:
      background-color 0.3s ease,
      color 0.3s ease;
  }
  nav.mobile ul li a:hover {
    color: var(--light-blue-2);
    background: rgba(45, 45, 45, 0.5);
    /* border-left: 0.5rem solid var(--light-blue-3);  */
  }

  .nav-footer {
    font: var(--body-xxs-reg);
    position: relative;
    padding: var(--spacing-2);
  }

  .menu-social {
    padding: var(--spacing-2);
    display: none;
  }
  .menu-social a {
    color: var(--background);
  }

  .menu-social a:hover {
    color: var(--light-blue-3);
  }

  /* ================= NOT IN USE =================*/
  /* SECOND LEVEL */
  nav.mobile ul li li:last-child {
    border: none;
  }
  nav.mobile ul li li a {
    background: #444;
    position: relative;
    display: block;
    padding: 10px 10px 10px 15px;
    border-left: 4px #444 solid;
    color: #ccc;
    text-decoration: none;
  }
  nav.mobile ul li li a:hover {
    background: rgba(65, 65, 65, 0.5);
  }

  /* THIRD LEVEL */
  nav.mobile ul li li li:last-child {
    border: none;
  }
  nav.mobile ul li li li a {
    background: #555;
    position: relative;
    display: block;
    padding: 10px 10px 10px 25px;
    color: #ccc;
    text-decoration: none;
    border-left: 4px #555 solid;
  }
  nav.mobile ul li li li a:hover {
    background: rgba(85, 85, 85, 0.5);
  }

  nav.mobile ul li .click {
    /* dropdown menu idicator arrow be sure to include this image with your image files */
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 12399994;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    padding: 17px 20px;
    color: #fff;
  }

  /* FONT AWESOME ICONS */
  nav.mobile ul li a .fa {
    width: 25px;
    font-weight: 100;
    padding: 8px 3px;
    margin: 0 6px 0 0;
    text-align: center;
    background: #292929;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  }

  nav.mobile ul li .fa-chevron-down {
    color: #999;
  }

  /* MENU HEADER SOCIAL MEDIA */
  nav.mobile .social-media {
    position: relative;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    word-spacing: 13px;
    padding: 0 0 0 15px;
    color: #ccc !important;
  }

  nav.mobile .social-media a:link,
  nav.mobile .social-media a:visited {
    color: #ccc;
    text-decoration: none;
  }
  nav.mobile .social-media a:hover,
  nav.mobile .social-media a:active {
    color: #fff;
    text-decoration: underline;
  }
}

@media screen and (max-width: 1020px) {
  #menu-button {
    width: 100%;
  }
}

@media only screen and (max-width: 520px) {
  .menu-social {
    display: flex;
  }

  .nav-footer {
    padding-top: 0;
  }
}

@media screen and (max-width: 430px) {
  #menu-button {
    width: 100%;
  }

  .header-wrapper {
    padding: var(--spacing-4) var(--spacing-5);
  }
}
