/* Custom styles to supplement Tailwind */

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

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

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

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Vertical Text Helper */
.writing-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a192f;
}
::-webkit-scrollbar-thumb {
    background: #233554;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Input Placeholder */
::placeholder {
    color: #4a5568;
}
