/* Base Reset */
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #fffaf4;
  }
  
  /* Navbar */
  .navbar.premium-nav {
    background-color: #0d0d0d; /* Rich Black */
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 18px 0;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
  }
  
  .nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo */
  .logo a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
  }
  
  .logo span {
    color: #d4af37; /* Royal Gold */
  }
  
  /* Nav Links */
  .nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .nav-links a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    width: 0;
    height: 2px;
    background-color: #d4af37;
    position: absolute;
    bottom: -6px;
    left: 0;
    transition: width 0.4s ease;
  }
  
  .nav-links a:hover {
    color: #d4af37;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Login Button (Premium Style) */
  .btn-gold {
    background-color: #d4af37;
    color: #000;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .btn-gold:hover {
    background-color: #fff;
    color: #d4af37;
    border: 1px solid #d4af37;
  }
  
  /* Mobile Menu */
  .menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background: #0d0d0d;
      position: absolute;
      right: 20px;
      top: 75px;
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  