/* Custom Styles for Andy & Nates */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0A192F;
    color: #E6F1FF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0A192F;
}
::-webkit-scrollbar-thumb {
    background: #112240;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64FFDA;
}

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}

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

/* Button Hover Effects */
button, a {
    transition: all 0.3s ease;
}

/* Image Hover Zoom */
img {
    transition: transform 0.5s ease;
}
