/* Custom styles to supplement Tailwind */
html {
    scroll-behavior: smooth;
}

/* Ensure content is visible before JS loads */
body {
    visibility: visible;
}

/* Custom scrollbar for a polished feel */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
