/* ============================= */
/* NAVBAR */
/* ============================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 10;
}
  
    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        font-size: 1.1rem;
        color: white;
    }
    
    /* NAV LINKS */
    .nav-links {
        display: flex;
        gap: 2rem;
    }
    
    .nav-links a {
        text-decoration: none;
        color: white;
        opacity: 0.85;
        font-weight: 100;
        transition: opacity 0.2s;
    }
    
    .nav-links a:hover {
        opacity: 1;
    }
    
    /* HAMBURGER MENU */
    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 22px;
        height: 18px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* MOBILE STYLES */
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        background: rgba(10,10,15,0.9);
        backdrop-filter: blur(10px);
        height: 0;
        overflow: hidden;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1.5rem;
        transition: height 0.3s ease;
      }
    
      .nav-links.open {
        height: auto;
        padding: 1rem;
      }
    
      .menu-toggle {
        display: flex;
      }
    
      .menu-toggle.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
      }
    
      .menu-toggle.open span:nth-child(2) {
        opacity: 0;
      }
    
      .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
      }
    }