/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.count-animation {
    animation: countUp 1s ease-out forwards;
}

/* Smooth hover transitions */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile menu animation */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-menu.active {
    max-height: 500px;
}

/* Filter button active state */
.filter-btn.active {
    background-color: #2D5016;
    color: white;
}

/* Hidden class for filtering */
.hidden-filter {
    display: none !important;
}

/* Cookie Banner */
#cookie-banner {
    z-index: 9999;
    transition: transform 0.4s ease-in-out;
}

#cookie-banner.hidden-banner {
    transform: translateY(100%);
}
