/* Base styles */
header {
  display: flex;
  justify-content: space-between;
  width: 90vw;
  align-items: center;
  padding: 20px;
 background-color:white;
 z-index:100;
}

header img {
  padding: 10px 0;
  width: 50%;
}

.header_content {
  display: flex;
  /*align-items: center;*/
  gap: 20px;
  list-style-type: none;
   background-color:white;
 z-index:100;
}
.header_content a:hover{
  color: rgb(217, 63, 63);
}
header a {
  color: black;
  text-decoration: none;
}

.dropdown {
  list-style-type: none;
  display: none;
  position: absolute;
  background: white;
  box-shadow: 2px 2px 2px 2px rgb(243, 236, 236);
  padding: 20px;
  z-index:99;
  font-size: 15px;
}

li:hover .dropdown {
  display: flex;
    padding:20px;
  gap: 10px;
  flex-direction:column;
   z-index:99;
  background: white;
}
#bars{
  display:none;
}
/* Mobile responsive styles */
@media screen and (max-width:768px) {
  header {
    padding: 0;
    background-color:white;
    z-index:100;
    position: absolute;
    width:99%;
  }
  
  header img {
    width: 55%;
  }

  /* Menu - hidden by default on mobile */
.header_content {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -300px;  /* Initially off-screen */
    background-color: white;
    height: 100vh;
    width: 250px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease-in-out;  /* Sliding effect */
    padding-top: 10px;  /* Space for logo */
    align-items: flex-start;
    padding-left: 20px;
    overflow-y: auto;  /* Enables vertical scrolling */
    z-index:99;
}

.header_content.show {
    right: 0;  
    background-color: white;
     z-index:99;
}

  


  /* Hamburger icon */ 
  .fa-bars {
    font-size: 30px;
    cursor: pointer;
  }
  .dropdown {
      display: none;
      position:   absolute;
      padding-left: 20px;
        font-size:12px;
        
    }
    .dropdown li{
        /*font-size:10px;*/
    }
    
    /* Show dropdown when 'show-dropdown' class is added */
    .dropdown.show-dropdown {
      display: block;
        /*font-size:10px; */
    }
    #bars{
      display:block;
      margin-right:5px;
    }
    /* The overlay that covers the body */

}
