/* HEADER LAYOUT */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #3a5068;
  font-family: 'Calibri', sans-serif;
  position: relative;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap; 
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap; 
}


/* .header-text h1 { 
  font-size: 1.4rem;
  text-align: center;
} */


/* HEADER LOGO */
.logo {
  height: 50px;
  margin-right: 15px;
}


/* HEADER TEXT */
.header-text h1 {
  margin: 0;
  font-size: 24px;
  color: white;
}


.header-text small {
  font-size: 0.8rem; 
  display: block; 
  margin-top: 4px;
  color: white; 
}


/* DOWNDOWN NAVIGATION */
.dropbtn {
  background-color: #3a5068;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content { /* Default structure style of the dropdown items */
  display: none;
  position: absolute;
  background-color: #3a5068;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a { /* Style of the dropdown items text */
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover { /* Style of the dropdown items background */
  background-color: #3a5080;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn { /* Style of the navigation button background */
  background-color: #3a5068;
}

.hamburger {
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

/* .header-right button {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
} */

/* .header-text h2 {
  margin: 0;
  font-size: 16px;
  color: white;
} */

/* ---------MOBILE DISPLAY ----------*/

@media (max-width: 768px) { 

  .desktop-nav {
    display: none;
  }
  
  .header-text small {/* Removes the contact info if on mobile */
    display: none;
  }

  .hamburger-nav { /* Style of the burgers dropdown items */
    display: none;
    flex-direction: column;
    background-color: #3a5068;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 220px;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  .hamburger-nav a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    border-top: 1px solid #4c5a6a;
  }

  .hamburger {
    display: block;
    margin: 0 auto;
  }  
/* 
  .mobile-nav {
    width: 90%;
    right: 5%;
  } */
} 