/*
 * NeoPunto Base Styles
 * Built on top of Tailwind CSS utilities
 */

/* Scrollbar styles for modern look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Custom Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-down {
    animation: slideDown 0.3s ease-out forwards;
}

/* Intersection Observer Classes */
.opacity-0 {
    opacity: 0;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 700ms;
}

/* Base states for intersection animations */
.translate-y-10 {
    transform: translateY(40px);
}

.scale-95 {
    transform: scale(0.95);
}

/* Active states for intersection animations */
.opacity-100 {
    opacity: 1;
}

.translate-y-0 {
    transform: translateY(0);
}

.scale-100 {
    transform: scale(1);
}

/* Add stagger delay utilities if needed */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
