/* nirajpatel.in - Minimal stylesheet */

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

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding: 2rem 1rem;
}

/* Layout */
.container {
    max-width: 650px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.15rem; }

p {
    margin-bottom: 1em;
}

/* Links */
a {
    color: #067df7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation */
nav {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

nav a {
    margin-right: 1.5rem;
    color: #333;
}

nav a:hover {
    color: #067df7;
}

/* Header */
header {
    margin-bottom: 2rem;
}

header h1 {
    margin-bottom: 0.25rem;
}

header p {
    color: #666;
    margin-bottom: 0;
}

/* Main content */
main {
    margin-bottom: 3rem;
}

/* Essays list */
.essay-list {
    list-style: none;
}

.essay-list li {
    margin-bottom: 0.75rem;
}

.essay-list .date {
    color: #999;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Article (for essays) */
article {
    margin-bottom: 2rem;
}

article h1 {
    margin-bottom: 0.25rem;
}

article .meta {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

article img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

article blockquote {
    border-left: 3px solid #ddd;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #555;
    font-style: italic;
}

/* About page */
.about-photo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    h1 { font-size: 1.5rem; }

    nav a {
        margin-right: 1rem;
    }
}
