/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

/* Hero Section */
.projects-hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.projects-hero-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Filter Bar */
.project-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: #95C11F;
    color: #95C11F;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #95C11F;
    color: white;
    border-color: #95C11F;
    box-shadow: 0 6px 15px rgba(149, 193, 31, 0.3);
}

/* Project Cards Animation */
.content-card.project-item {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s ease, box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.content-card.project-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(149, 193, 31, 0);
    transition: box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.content-card.project-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.content-card.project-item:hover::after {
    box-shadow: inset 0 0 0 2px rgba(149, 193, 31, 0.5);
}

.content-card.project-item.hidden {
    display: none;
}

.content-card.project-item.fade-out {
    opacity: 0;
    transform: scale(0.95);
}
