header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background: transparent;
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  .header-container{
    width: 75%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }

  nav li.active a{
    color: #F2C2F7;
  }

  nav li.discover-bar{
    width: 216px;
  }
  
  nav li.faq{
    width: 46px;
  }

  nav li.contact-us{
    width: 118px;
  }

  nav li.about-us{
    width: 98px;
  }

  nav li.home{
    width: 60px;
  }
  
  nav a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    
    font-weight: 400; 
  }
  
  nav a:hover {
    font-weight: 700; 
    text-decoration: underline;
    color: #F2C2F7; 
  } 

  .auth-buttons{
    display: flex;
    gap: 15px;
  }

  .auth-buttons button{
    background-color: transparent;
    padding: 11px 18px;
    border: 1px solid #5BBDE0;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 22px;
  }

  .auth-buttons button:hover{
    background-color: #5BBDE0;
    border: 1px solid #5BBDE0;
    color: #000;
    font-weight: 900;
  }

  /* Hamburger hidden on desktop */
  .hamburger {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
  }

  /* Show hamburger on all tablets, iPads (up to iPad Pro 12.9" landscape = 1366px), and mobile */
  @media (max-width: 1366px) {
    .hamburger {
      display: block;
    }

    .header-container {
      width: 90%;
    }

    nav li {
      width: auto !important;
    }

    nav {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: #111;
      display: none;
      text-align: center;
      z-index: 999;
    }

    nav ul {
      flex-direction: column;
      gap: 0;
      padding: 20px 0;
    }

    nav a {
      padding: 10px 0;
      display: block;
      font-size: 18px;
    }

    nav.active {
      display: block;
    }

    .auth-buttons button {
      padding: 11px 12px;
      font-size: 16px;
    }
  }

  .background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
  }

  @media (max-width: 768px) {
    header {
      font-size: 1rem;
      padding: 10px 0;
    }

    .auth-buttons button {
      padding: 8px 10px;
      font-size: 14px;
    }

    .header-container {
      width: 90%;
    }
  }