/* Custom Animations & Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@300;400;600&display=swap');

body {
    background-color: #020617;
    color: #cbd5e1;
}

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

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile Menu Transitions */
#menu-btn {
    transition: transform 0.3s ease;
}

#menu-btn:hover {
    transform: scale(1.1);
}

#line1.active {
    transform: rotate(45deg) translate(5px, 5px);
}

#line2.active {
    opacity: 0;
}

#line3.active {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 2rem;
}

/* Mobile Menu Open State */
#mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2dd4bf;
}
