/* Newspaper-style minimal theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
    font-size: 16px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.newspaper-header {
    background: #fff;
    border-bottom: 2px solid #000;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.header-content {
    text-align: center;
}

.masthead {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #666;
}

/* Main content */
.newspaper-main {
    margin-bottom: 4rem;
}

.newspaper-section {
    margin-bottom: 4rem;
    background: #fff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.newspaper-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #000;
    padding-bottom: 0.5rem;
}

.content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
    border-left: 4px solid #000;
}

.contact-item {
    margin-bottom: 0.8rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item a {
    color: #000;
    text-decoration: underline;
}

.contact-item a:hover {
    color: #666;
}

/* Experience */
.experience-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.meta {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.experience-item ul {
    list-style: none;
    padding-left: 0;
}

.experience-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.experience-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #000;
    padding-bottom: 0.3rem;
}

.skill-category p {
    color: #333;
    font-size: 1rem;
}

/* Projects */
.project-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.project-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.project-item ul {
    list-style: none;
    padding-left: 0;
}

.project-item li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.project-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    gap: 2.5rem;
}

.blog-post {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.blog-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post h3 a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post h3 a:hover {
    color: #666;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
}

.post-meta .date {
    font-weight: 600;
}

.post-meta .reading-time {
    background: #f0f0f0;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.post-meta .category {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #000;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* VSCode-style code highlighting */
pre {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 1.5rem 0;
    border: 1px solid #333;
}

code {
    background: #f0f0f0;
    color: #333;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9rem;
}

pre code {
    background: none;
    color: inherit;
    padding: 0;
}

/* VSCode syntax highlighting colors */
.hljs-keyword { color: #569cd6; }
.hljs-string { color: #ce9178; }
.hljs-comment { color: #6a9955; }
.hljs-function { color: #dcdcaa; }
.hljs-number { color: #b5cea8; }
.hljs-class { color: #4ec9b0; }
.hljs-variable { color: #9cdcfe; }

/* Footer */
.newspaper-footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .masthead {
        font-size: 2.2rem;
    }
    
    .newspaper-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .newspaper-section h2 {
        font-size: 1.6rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .main-nav a {
        font-size: 0.85rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .blog-post h3 {
        font-size: 1.3rem;
    }
    
    .post-meta {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .masthead {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .newspaper-section {
        padding: 1rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .blog-post h3 {
        font-size: 1.2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.3rem;
    }
} 