@tailwind base;
@tailwind components;
@tailwind utilities;
body {
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #172554;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}
.mobile-menu.active {
    right: 0;
}
.hidden {
    display: none;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
@media (min-width: 768px) {
    .mobile-menu, .mobile-menu-button {
        display: none;
    }
}