/* Custom Styles */
body {
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, .font-syne {
    font-family: 'Syne', sans-serif;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

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

/* Mobile Menu Link Hover */
.mobile-link:hover {
    color: #FF6B6B;
}

/* Hide scrollbar for cleaner look in some browsers */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #2D3436;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B6B;
}
