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

html {
    scroll-behavior: smooth;
}

.hero-bg {
    background: url('/attached_assets/generated_images/Banner.png');
    background-size: cover;
    background-position: center;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out both;
}

.animate-slide-up {
    animation: slide-up 0.8s ease-out both;
    animation-delay: 0.2s;
}

.animate-slide-up-delay {
    animation: slide-up 0.8s ease-out both;
    animation-delay: 0.4s;
}

.animate-slide-up-delay-2 {
    animation: slide-up 0.8s ease-out both;
    animation-delay: 0.6s;
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.nav-scrolled {
    border-color: rgb(229 231 235);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.05);
}

::selection {
    background-color: #C5A059;
    color: white;
}
