:root {
    --bg: #ffffff;
    --text: #1a1a1a;
    --accent: #0070f3; /* Vercel Blue */
    --gray: #f4f4f4;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

header h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
header p { color: #666; margin-bottom: 1.5rem; }

.social-links a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.social-links a:hover { color: var(--accent); }

.resume-section { margin: 40px 0; }

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}

.primary-btn {
    background-color: var(--accent);
    color: white;
}

.btn:hover { transform: translateY(-2px); }

.projects { text-align: left; margin-top: 50px; }
.project-card {
    background: var(--gray);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.project-card h3 { margin-top: 0; }
.project-card a { color: var(--accent); text-decoration: none; font-weight: 500; }
