@tailwind base;
@tailwind components;
@tailwind utilities;

.bg-hero {
    background-image: url("/images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Custom font smoothing */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom focus styles */
input:focus {
    outline: none;
}

/* Custom placeholder styles */
input::placeholder {
    color: #9ca3af;
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 30s linear infinite;
}

/* Optional: Pause animation on hover */
.animate-scroll:hover {
    animation-play-state: paused;
}
