#navbar {
    padding: 1.25rem 0;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-item {
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

.navbar-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-item:nth-child(2) { animation-delay: 0.15s; }
.navbar-item:nth-child(3) { animation-delay: 0.2s; }
.navbar-item:nth-child(4) { animation-delay: 0.25s; }
.navbar-item:nth-child(5) { animation-delay: 0.3s; }
.navbar-item:nth-child(6) { animation-delay: 0.35s; }

html {
    scroll-behavior: smooth;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}
