/* Custom styles that extend Tailwind */
@layer utilities {
    .text-shadow {
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    .text-shadow-none {
        text-shadow: none;
    }
    
    .transition-slow {
        transition: all 0.5s ease;
    }
    
    .bg-blend-multiply {
        background-blend-mode: multiply;
    }
}

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

/* Custom underline styles */
.custom-underline {
    position: relative;
    display: inline-block;
}

.custom-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.custom-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Custom fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Delay animations for staggered effect */
.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }