/* Navigation Bar */
header {
    background-color: #FFFFFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  .logo img {
    height: 50px;
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav a, .dropbtn {
    color: #AEAEAE;
    text-decoration: none;
    padding: 20px 15px;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
    font-size: 14px;
  }
  .dropdown button {
    border: none;
  }
  .nav a:hover, .dropdown:hover .dropbtn {
    background-color: #E1E1E1;
    color: #F16C22;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  }
  .dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #AEAEAE;
  }
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
/* Hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

/* --- Responsive Styles --- */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
    margin-left: auto;
    color: #F16C22;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 55px;
    left: 0;
  }

  .nav.show {
    display: flex;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .nav a,
  .dropbtn {
    width: 100%;
    text-align: center;
    padding: 15px;
    border-top: 1px solid #eee;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: #fafafa;
  }

  .dropdown-content a {
    text-align: center;
  }

  .dropdown-content.show-dropdown {
    display: block;
  }
}
  /* Footer */
  footer {
    background: #333;
    padding: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #FFFFFF;
  }

  footer img {
    height: 2rem;
  }
  

  
