/* Custom styles to supplement Tailwind */

/* Smooth scrolling is handled by Tailwind's scroll-smooth class on html */

/* Example of custom utility if needed */
.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

/* Hide scrollbar for gallery if needed, though we are using a JS slider */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}