:root {
    --bg: #ffffff;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --primary: #4f46e5;
    --accent-emerald: #10b981;
    --accent-rose: #f43f5e;
    --card-hover: #f9fafb;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
header {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    text-align: left;
}
h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    font-weight: 450;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: var(--text-muted);
    transition: all 0.2s ease;
}
.social-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}
    
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 8rem;
}
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.project-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 24px;
    transition: all 0.2s ease;
    align-items: center;
    cursor: pointer;
}
.project-card:hover {
    background-color: var(--card-hover);
}
.github-link {
    transition: color 0.2s ease;
}
.github-link:hover {
    color: var(--primary) !important;
}
.image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
    border: 1px solid var(--border);
    display: flex;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.project-card:hover img {
    transform: scale(1.05);
}
.content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.project-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.project-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    color: var(--text-muted);
    border-radius: 6px;
}
.status-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
}
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}
/* .is-private {
    opacity: 0.6;
    cursor: default;
}
.is-private:hover {
    background-color: transparent;
} */
footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}
@media (max-width: 640px) {
    header { padding-top: 4rem; }
    h1 { font-size: 2.5rem; }
    .project-card {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    .image-wrapper {
        aspect-ratio: 16/10;
    }
}
