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

html {
    scroll-behavior: smooth;
}

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

/* Animations */
@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

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

/* Reveal Animation Utilities */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
}

.reveal.fade-up {
    transform: translateY(30px);
}

.reveal.fade-up.active {
    transform: translateY(0);
}

.reveal.slide-in-left {
    transform: translateX(-30px);
}

.reveal.slide-in-left.active {
    transform: translateX(0);
}

.reveal.slide-in-right {
    transform: translateX(30px);
}

.reveal.slide-in-right.active {
    transform: translateX(0);
}

/* Scrollbar for modal */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e11d48;
    border-radius: 10px;
}