/* Custom Styles for Uncle Nertan's */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Base Typography adjustments */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animation Utility Classes (Progressive Enhancement) */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1; /* Default to visible for no-JS */
    transform: none;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Animation states - applied via JS or media query */
@media (prefers-reduced-motion: no-preference) {
    .reveal-up {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal-left {
        opacity: 0;
        transform: translateX(-30px);
    }
    .reveal-right {
        opacity: 0;
        transform: translateX(30px);
    }
    
    .reveal-up.active,
    .reveal-left.active,
    .reveal-right.active {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* Navbar Scroll State */
nav.scrolled {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
