/* Custom Styles & Animations */

/* 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;
}

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

::-webkit-scrollbar-track {
    background: #0a192f;
}

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

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

/* Utility for mobile menu transition */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Form Input Styles (if needed later) */
input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

/* Geometric Shape Decorations */
.shape-circle {
    border-radius: 50%;
}

.shape-square {
    border-radius: 0.5rem;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    .text-7xl {
        font-size: 3.5rem;
    }
}
