/* Default desktop/tablet layout */
.navbar {
    width: 100%;
    background-color: #874300;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    position: static;
      flex-wrap: wrap;
      font-variant: small-caps;
      letter-spacing: .04em;
  }
  
  .banner {
    width: 100%;
   /*  background-color: #444;*/
    padding: 10px 20px;
  }

  .navbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .navbar a:hover {
    /*background-color: #da2129;*/
    color: #fdaa1a;
  }
  
  .burger {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
    padding: 14px 16px;
  }
  
  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none; /* Removes bullet points */
    margin: 0;
    padding: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    overflow: hidden;
    max-height: 1000px;
    opacity: 1;
  }
  
  /* Mobile styles */
  @media screen and (max-width: 600px) {
    .navbar {
      position: fixed;
      top: 0;
      flex-direction: column;
      align-items: flex-start;
      padding: 0;
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      max-height: 0;
      opacity: 0;
    }
  
    .navbar a {
      text-align: left;
      width: 100%;
    }
  
    .burger {
      display: block;
      align-self: flex-end;
      padding: 14px 16px;
    }
  
    .nav-links.active {
      max-height: 500px; /* enough to show all links */
      opacity: 1;
    }
  }

  
 
  /* Mobile layout */
  @media screen and (max-width: 600px) {
    .navbar {
      position: fixed;
      top: 0;
      flex-direction: column;
      align-items: flex-start;
      z-index: 999;
    }
  
    .banner {
      margin-top: 60px; /* push banner below fixed navbar */
    }
  
    .nav-links {
      flex-direction: column;
      width: 100%;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
      overflow: hidden;
    }
  
    .nav-links.active {
      max-height: 500px;
      opacity: 1;
    }
  }
  