:root {
    color-scheme: dark;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background-color: #020617;
}

#navbar {
    background: transparent;
}

#navbar.active {
    background-color: rgba(10, 14, 24, 0.92);
    backdrop-filter: blur(16px);
}

.hero-overlay {
    transform: translateZ(0);
}

.delay-150 {
    animation-delay: 150ms;
}

#mobile-menu {
    transition: max-height 0.25s ease;
}

.card-hover {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(234, 179, 8, 0.18);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.9s ease-out both;
}

input,
textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
