:root {
    --accent: #06f;
    --muted: #dfe6eb;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    background-size: cover;
    background: #f8fbff center;
    color: #0f172a;
    line-height: 1.3;
}

/*header {*/
/*    position: sticky;*/
/*    top: 0;*/
/*    background: white;*/
/*    border-bottom: 1px solid #e5e7eb;*/
/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/

/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*    color: #0f172a;*/
/*}*/

/*.logo-img {*/
/*    height: 52px;*/
/*    width: auto;*/
/*}*/

/*.nav-wrap {*/
/*    width: min(1200px, 92%);*/
/*    margin: 0 auto;*/
/*    padding: 16px 0;*/

/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*nav a {*/
/*    color: rgba(11, 18, 32, 0.78);*/
/*    text-decoration: none;*/
/*    margin-left: 18px;*/
/*}*/

/*nav a:hover {*/
/*    color: var(--accent);*/
/*    transform: translateY(-2px);*/
/*}*/

.page-title {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 18px;
    color: #64748b;
}

.projects-grid {
    width: min(1100px, 92%);
    margin: 50px auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.project-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 26px;
    border: 1px solid #e5e7eb;
    transition: 0.2s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.project-card h2 {
    margin: 14px 0 8px;
    font-size: 22px;
    color: #0f172a;
}

.project-card p {
    color: #475569;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
    color: #64748b;
}

.tech-stack span {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    border: 1px solid #e2e8f0;
    background: white;
}

.tag {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
}

/* tag colors */

.blue { background:#eef6ff; color:#2563eb; }
.purple { background:#f3e8ff; color:#7c3aed; }
.violet { background:#ede9fe; color:#6d28d9; }
.green { background:#ecfdf5; color:#059669; }
.orange { background:#fff7ed; color:#ea580c; }
.pink { background:#fdf2f8; color:#db2777; }

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}