/* Image Banner */
.ImageBanner{
    max-width: 100%;
    height: 100%;
  padding-top: 0px;
    
  }
  img{
    max-width: 100%;
  }

/* Dawns logo within Navigation Bar */
  .NavbarLogo{
    width: fit-content;
    height: 100%;
    padding-left: 10px;
    display: flex;
  }

  .NavbarLogo img{
    height: 60px;
    align-self: center;
  }

/* Naviagtion Bar*/  
  .navbar {
    width: 100%;
    height: 60px;
    background-color: #161616;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    align-items: center;
  }
  .nav-links {
    display: flex;
    list-style: none;
    width: fit-content;
  }
  .nav-links ul{
    list-style: none;
    margin-left: 20px;
  }
  .nav-links li{
    margin-bottom: 20px;
  }
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
  }
  .menu-toggle {
    display: none;
    font-size: 26px;
    background: #161616;
    cursor: pointer;
  }

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Hide dropdown by default */
.dropdown-menu {
  display: none;
  position: absolute;
  list-style: none;
  min-width: 180px;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
}
.dropdown-menu li a:hover {
  background: #555;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #444;
    min-width: 180px;
    z-index: 1000;
  }
}

/* Responsive layout for mobile */
  @media (max-width: 768px) {
    .navbar {
      justify-content: space-between;
      padding: 10px 15px;  /* smaller top/bottom & left/right */
      height: auto; 
    }
    .hamburger {
      order: 3;              /* push to the right */
      margin-left: auto;     /* force right alignment */
    }
  
    .NavbarLogo {
      order: 1;
    }

    .NavbarLogo img{
      height: 45px; /* smaller than desktop, adjust as needed */
      width: auto; 
    }

    .nav-links {
      order: 2;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background: #333;
      display: none;
      padding: 10px 10px; 
    }
    .nav-links.active {
      display: flex;
    }
    .nav-links li a {
      display:block;

    }
    .dropdown-menu {
      position: static;
      display: none;
      padding: 10px 0;
      gap: 10px;
    }
    .dropdown-menu.show {
      display: flex;
      flex-direction: column;
    }
    .dropdown-menu li a {

      color: white;
      text-decoration: none;
    }
    .hamburger {
    display: flex; /* show hamburger */
  }
/* Desktop hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

  }
  