html {
    scroll-behavior: smooth;
}

/* Custom scrollbar or other global overrides can go here */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Menu Transition helper classes if needed */
.mobile-menu-enter {
    transform: translateY(-100%);
    opacity: 0;
}
.mobile-menu-enter-active {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
