/* Custom styles that extend Tailwind */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #780000;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #4a0000;
}

/* Loading animation for images */
img {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
img[data-src] {
    opacity: 0;
}

/* Subtle hover effects for cards */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}
