/* Custom overrides and animations */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #F9F7F5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #121212;
}
::-webkit-scrollbar-thumb {
    background: #2A2A2A;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF6B6B;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Mobile Menu Transitions */
#mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

/* Image hover effects handled in HTML via Tailwind, but adding a global smooth transition for images */
img {
    transition: opacity 0.3s ease;
}
