/* Cursy Framework Extended - Base Styles */
/* Import base Cursy framework (assuming it's available) */
/* @import url('path/to/original/cursy.css'); */

/* Extended Color Palette */
:root {
    --cursy-primary: #ff6b9d;
    --cursy-secondary: #4ecdc4;
    --cursy-accent: #ffe66d;
    --cursy-dark: #2c3e50;
    --cursy-light: #ecf0f1;
    --cursy-gradient: linear-gradient(135deg, var(--cursy-primary), var(--cursy-secondary));

    /* Animation Variables */
    --animation-speed-fast: 0.3s;
    --animation-speed-normal: 0.6s;
    --animation-speed-slow: 1.2s;
    --particle-count: 50;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,215,0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    text-decoration: none;
    background: linear-gradient(45deg, #ffd700, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.75rem;
}

.nav-menu li a {
    color: #b8c5d6;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
}

.nav-menu li a:hover {
    color: #ffd700;
    background: rgba(255,215,0, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.4rem;
    }

    .nav-menu li a {
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
}
