/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FAFAF5;
    min-height: 100vh;
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Gradient */
.hero-gradient {
    background: radial-gradient(circle at top right, #3d2b1f, #1a0f08);
}

/* Hide Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Filter Button States */
.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #f2930d;
    color: white;
    box-shadow: 0 10px 25px -8px rgba(242, 147, 13, 0.2);
}

.filter-btn:not(.active):hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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