/* ===== PROJECTS SECTION ===== */
.projects-section {
    max-width: 1200px;
    margin: 0 auto 120px;
    padding: 0 20px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: rgba(28, 28, 30, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(72, 72, 74, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 12px 48px rgba(10, 132, 255, 0.15);
    border-color: rgba(10, 132, 255, 0.3);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.1), rgba(10, 132, 255, 0.05));
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
}

.project-tag {
    background: rgba(10, 10, 14, 0.8);
    backdrop-filter: blur(10px);
    color: #f5f5f7;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(72, 72, 74, 0.3);
}

.project-content {
    padding: 32px;
}

.project-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #a1a1a6;
    margin-bottom: 24px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tech-badge {
    background: rgba(10, 132, 255, 0.1);
    color: #0a84ff;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(10, 132, 255, 0.2);
}

.project-links {
    display: flex;
    gap: 12px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 132, 255, 0.15);
    color: #0a84ff;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 1px solid rgba(10, 132, 255, 0.3);
    transition: all 0.3s ease;
}

.project-btn:hover {
    background: rgba(10, 132, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 132, 255, 0.2);
}

.project-btn svg {
    width: 18px;
    height: 18px;
}

/* Placeholder Project */
.project-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: rgba(28, 28, 30, 0.5);
    border-style: dashed;
}

.project-content-center {
    text-align: center;
    padding: 40px;
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.placeholder-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a1a1a6;
    margin-bottom: 12px;
}

.placeholder-text {
    font-size: 1rem;
    color: #86868b;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-section {
        padding: 0 16px;
        margin-bottom: 80px;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 24px;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-description {
        font-size: 0.9375rem;
    }

    .project-placeholder {
        min-height: 300px;
    }
}




