/* Custom styles beyond Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    /* Custom scrollbar for webkit */
    scrollbar-width: thin;
    scrollbar-color: #64FFDA #0A192F;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0A192F;
}

::-webkit-scrollbar-thumb {
    background: #112240;
    border: 2px solid #0A192F;
}

::-webkit-scrollbar-thumb:hover {
    background: #64FFDA;
}

/* Mobile Menu Animations */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

#menu-btn {
    display: block;
}

/* Desktop Menu */
@media (min-width: 768px) {
    #menu-btn {
        display: none;
    }
}

/* Utility for text selection */
::selection {
    background-color: #64FFDA;
    color: #0A192F;
}

/* Subtle fade in for sections below fold */
.fade-in-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
