@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Source+Code+Pro:wght@400;600&display=swap');

:root {
    --bg-color: #0a0a0a;
    --text-color: #e5e5e5;
    --primary-color: #a78bfa; /* violet */
    --secondary-color: #9ca3af; /* gray */
    --border-color: #2a2a2a;
}

/* Basic Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

/* Header */
header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #ffffff;
}

header .subtitle {
    font-family: 'Source Code Pro', monospace;
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Links */
.contact-links {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-links a:hover {
    color: var(--primary-color);
}

/* Main Content */
main > p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Section Title */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Card (for Projects & Work) */
.card {
    background-color: transparent;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.card:last-of-type {
    border-bottom: none;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #ffffff;
}

.card .card-subtitle {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.875rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.project-links a {
    font-family: 'Source Code Pro', monospace;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

.project-links a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--secondary-color);
    font-size: 0.875rem;
}

@media (max-width: 600px) {
    .container {
        padding: 2rem 1rem;
    }
    header h1 {
        font-size: 1.75rem;
    }
}
