.projects-grid {
    padding: 2rem 0;
}
.projects-header {
    padding: 3rem 0 2rem;
    text-align: center;
}
.projects-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.projects-header p {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}
.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
}
.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.project-content {
    padding: 1.5rem;
}
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.project-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}
.status-badge.live {
    background-color: #dcfce7;
    color: #166534;
}
.status-badge.in-progress {
    background-color: #fef9c3;
    color: #854d0e;
}
.project-description {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.project-tags {
    margin-bottom: 1rem;
}
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin: 0.25rem;
    background-color: #f3f4f6;
    color: #374151;
    border-radius: 9999px;
    font-size: 0.875rem;
}
.project-links {
    display: flex;
    gap: 1rem;
}
.project-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}
.project-links a:hover {
    text-decoration: underline;
}
.placeholder-card {
    background: #f3f4f6;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.25rem;
    font-weight: 500;
}




/* Project Cards styles from styles.css*/
/* .project-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card.in-progress {
    filter: grayscale(20%) blur(1px);
    opacity: 0.9;
}

.project-card.in-progress:hover {
    filter: none;
    opacity: 1;
}

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

.project-content {
    padding: 1.5rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.status-badge.live {
    background: #dcfce7;
    color: #166534;
}

.status-badge.in-progress {
    background: #f3f4f6;
    color: #4b5563;
} */
