/* Custom styles for a clean, minimal blog similar to huyenchip.com */

/* Clean typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Cleaner header */
.header {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.header .container {
    max-width: 800px;
}

/* Minimal navigation */
.nav-primary {
    font-weight: 400;
}

.nav-primary a {
    color: #333;
    text-decoration: none;
    padding: 0 15px;
}

.nav-primary a:hover {
    color: #007acc;
    border-bottom: none;
}

/* Clean main content area */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Minimal post styling */
.post-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #222;
}

.post-title a {
    color: #222;
    text-decoration: none;
}

.post-title a:hover {
    color: #007acc;
}

/* Clean post meta */
.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Minimal sidebar */
.sidebar {
    background: none;
    padding: 2rem 1rem;
}

.sidebar h2 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Clean footer */
.footer {
    border-top: 1px solid #eee;
    background: #fff;
    padding: 2rem 0;
}

.footer-social a {
    color: #666;
    margin: 0 10px;
    text-decoration: none;
}

.footer-social a:hover {
    color: #007acc;
}

/* Remove unnecessary decorations */
.post-content blockquote {
    border-left: 3px solid #007acc;
    background: #f9f9f9;
    padding: 1rem;
    margin: 1rem 0;
}

/* Clean code blocks */
pre, code {
    background: #f5f5f5;
    border: 1px solid #ddd;
    font-family: 'Monaco', 'Consolas', monospace;
}

pre {
    padding: 1rem;
    overflow-x: auto;
}

code {
    padding: 0.2rem 0.4rem;
    font-size: 0.9em;
}

/* Hide page titles - specifically for About page */
.single header h1 {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .nav-primary a {
        padding: 0 10px;
    }
}