:root {
    --slate-luxury: #2B4257;
    --accent-blue: #3B82F6;
    --accent-green: #508552;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .glass {
    background: rgba(15, 23, 42, 0.6);
}

.hero-gradient {
    background: radial-gradient(circle at top right, rgba(80, 133, 82, 0.1), transparent);
}

.nav-link-hover {
    position: relative;
    font-weight: 600;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-link-hover:hover {
    opacity: 1;
    color: var(--accent-green);
}

.nav-link-hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

.nav-link-hover:hover::after {
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B0F1A;
}
::-webkit-scrollbar-thumb {
    background: #2B4257;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #508552;
}
