/* Custom styles beyond Tailwind */

/* Hide scrollbar for ticker */
.logo-ticker::-webkit-scrollbar {
    display: none;
}
.logo-ticker {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Infinite Scroll Animation for Ticker */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.ticker-track {
    animation: ticker 30s linear infinite;
    min-width: max-content;
}

.logo-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* Custom shadow utilities not fully covered by Tailwind */
.shadow-glow {
    box-shadow: 0 0 20px rgba(190, 230, 116, 0.4);
}

.shadow-soft {
    box-shadow: 0 10px 40px rgba(26, 60, 40, 0.05);
}

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

/* Base transitions */
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
