/* Custom Overrides & Animations */
html {
    scroll-behavior: smooth;
}

body {
    /* Force font smoothing for thin fonts */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Utility for thin lines */
.line-thin {
    height: 1px;
    background-color: #e2e8f0;
}

/* Animation classes (progressive enhancement) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

/* Subtle gradient for hero image overlay if needed */
.hero-gradient {
    background: linear-gradient(to top, rgba(2, 6, 23, 0.6), transparent);
}
