/* Custom styles built on top of Tailwind CDN */

/* Fade In animations for scroll effect */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Custom glowing blob animations in hero background */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

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

/* Ensure empty links styled nicely */
a {
    outline: none;
}

/* Language Filter Buttons */
.lang-filter-btn.active {
    border-color: #800020 !important;
    background-color: #800020 !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(128, 0, 32, 0.25);
}

.lang-filter-btn:not(.active):hover {
    border-color: #800020;
    color: #800020;
}
