/* 
Offwhite: #F8F8F8
Orange: #E67E22
Royal Blue: #4169E1
Deep Navy: #003366
Steel Blue: #4682B4
Denim Blue: #1560BD 
*/
.main-header {
    background-color: #003366;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .main-header a {
    color: #fff;
    text-decoration: none;
  }
  
  .main-header a:hover {
    text-decoration: underline;
  }
  
  /* Mobile Header */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
  }
  /* Mobile Nav Dropdown */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #003366;
    color: white;
    position: relative; /* so dropdown nav aligns from here */
  }
  
  .menu-toggle {
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: white;
    padding: 0.25rem;
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; /* starts just below header */
    right: 1rem;
    background-color: #003366;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,01);
    z-index: 99;
    gap: 1rem;
  }
  
  .mobile-nav.open {
    display: flex;
  }
  
  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mobile-nav li {
    margin: 0;
  }
  
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .mobile-nav a.active {
    color: #E67E22;
    font-weight: bold;
  }
  
  /* Desktop Header */
  .desktop-header {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }
  
  .logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 1rem;
  }
  .moblogo {
    max-width: 160px;
    height: auto;
    margin-bottom: 1rem;
  }
  
  .navbar ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .navbar a.active,
  .mobile-nav a.active {
    color: #E67E22;
    font-weight: bold;
    border-bottom: 2px solid #E67E22;
    text-decoration: none;
  }
  .menu-toggle.active-toggle {
    color: #E67E22;
    background-color: rgba(255, 165, 0, 0.15); /* light orange background */
    border-radius: 4px;
    text-decoration: none;
  }  
  .footer{
    text-align: center;
}
  /* Desktop Layout */
  @media (min-width: 768px) {
    .mobile-header {
      display: none;
    }
  
    .desktop-header {
      display: flex;
    }
  
    .navbar a {
      font-weight: bold;
      transition: border-bottom 0.2s ease;
      
    }
  
    .navbar a:hover {
      border-bottom: 2px solid white;
      text-decoration: none;
    }
    .navbar.fixed {
        position: fixed;
        top: 0;
        background-color: #003366;
        z-index: 1000;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        padding: 1rem 0;
        text-align: center;
        padding-left: 30%;
        padding-right: 30%;
      }
      .navbar.fixed a{
        text-decoration: none;
  }
  .navbar {
    transition: all 0.4s ease-in-out;
  }
}

  @media (max-width: 768px) {
    .footer{
      font-size: 2.3vw;
    }
  }