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

.image-card {
    position: relative;
    overflow: hidden;
}

.image-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.image-card:hover::after {
    opacity: 1;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
} 