/* Custom Vanilla CSS - Tailwind directives removed as they require build step. CDN handles utilities. */

/* Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Cursor */
body {
    cursor: crosshair;
}

button, a {
    cursor: pointer;
}

/* Image Hover Zoom Effect */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.group:hover .img-zoom {
    transform: scale(1.1);
}

/* Stroke Text Utility */
.stroke-text {
    -webkit-text-stroke: 1px #555;
}
.stroke-text-white {
    -webkit-text-stroke: 2px white;
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-slideUp {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}