body {
      background-color:#0f0f0f;
      font-family: sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Wrapper */
    .wrapper {
      width: 95%;
      margin: 2rem auto;
    }
/* Default hamburger hidden on desktop */
.hamburger {
  display: none;
}
    /* Header */
    .header {
      background-color: #000000;
      border-radius: 50px;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 1rem 5rem;
    }

    .nav {
      display: flex;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: white;
      align-items: center;
    }

    .nav a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav a:hover {
      color: #BD9C6A; /* yellow-400 */
    }
 .nav .active{
     color: #BD9C6A;
}
    .nav span {
      color: #9ca3af; /* gray-500 */
    }

    .auth-buttons {
      display: flex;
      gap: 1rem;
    }

    .btn-outline {
      border: 1px solid #949494;
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background-color: #949494;
      color: black;
    }

    .btn-filled {
      background-color: #949494;
      color: black;
      padding: 0.5rem 1rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-filled:hover {
      background-color: #949494; /* yellow-500 */
    }
/* Hide nav and buttons on small screens */
@media (max-width: 768px) {
  .header-container{
    padding: 0px !important;
  }
  
  .nav ,.auth-buttons{
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    position: relative !important;
    margin: auto;
    background: black;
    padding: 10px;
    position: absolute;

    /* border-radius: 12px; */
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
  }
  .auth-buttons{
    /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
    border: none;

  }
  .nav a{
    color: #BD9C6A !important;
    /* border-bottom: 1px solid #BD9C6A; */
    width: 100%;
    padding: 10px;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color:#BD9C6A;
  }

  .header-container {
    position: relative !important;
    margin-bottom:20px;
  }

  .nav.show,
  .auth-buttons.show {
    display: flex;
  }
}


