/* Navbar */
.navbar {
    background: rgba(46, 41, 71, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(245, 209, 104, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #F5D168 0%, #F0A356 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #F5D168;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #F5D168;
}

.nav-btn {
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: rgba(245, 209, 104, 0.1);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #F5D168 0%, #F0A356 100%);
    color: #2E2947 !important;
    font-weight: 700;
}

.nav-btn-primary:hover {
    background: linear-gradient(135deg, #F0A356 0%, #e89345 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 209, 104, 0.3);
}