/* =========================
   PROJECTS SECTION
========================= */
.projects-section {
    padding: 100px 0;
    background: #000;
    max-width: 1400px;
    margin: 30px auto;
}

.projects-container {
    max-width: 1400px;
    margin: auto;
}

/* Header */
.projects-header {
    text-align: center;
    margin-bottom: 50px;
}

.projects-header h2 {
    font-size: 38px;
    font-weight: 700;
}

.projects-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Filters */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-orange);
    border-color: var(--color-orange);
    box-shadow: 0 0 18px rgba(255, 122, 25, 0.5);
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* Card */
.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.4s ease;
    max-width: 480px;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 122, 25, 0.25);
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 20px;
}

.project-tag {
    display: inline-block;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 122, 25, 0.15);
    color: var(--color-orange);
    margin-bottom: 10px;
}

.project-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.project-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Hide animation */
.project-card.hide {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-section {
        padding: 70px 0;
    }
}
