/*
Theme Name: Kaza
Description: Custom theme matching kaza.rs design
Version: 1.0
Author: Kaza.rs
*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: #333; text-decoration: none; }
a:hover { color: #82d305; }

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}
.site-logo-icon {
    width: 40px;
    height: 40px;
    background: #d00f10;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}
.site-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    letter-spacing: -0.5px;
}
.header-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}
.header-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: color .15s;
}
.header-nav a:hover { color: #333; }

/* Main content */
.site-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}

/* Blog listing */
.post-list { list-style: none; }
.post-item {
    padding: 32px 0;
    border-bottom: 1px solid #f0f0f0;
}
.post-item:first-child { padding-top: 0; }
.post-item-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}
.post-item-title a { color: #333; }
.post-item-title a:hover { color: #5f9a03; }
.post-item-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}
.post-item-excerpt {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}
.post-item-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #5f9a03;
}
.post-item-more:hover { color: #4a8000; }

/* Single post */
.single-post-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.single-post-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}
.single-post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.single-post-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 36px 0 16px;
    color: #333;
}
.single-post-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: #333;
}
.single-post-content p { margin-bottom: 16px; }
.single-post-content ul, .single-post-content ol {
    margin: 0 0 16px 24px;
}
.single-post-content li { margin-bottom: 8px; }
.single-post-content a { color: #5f9a03; font-weight: 600; }
.single-post-content a:hover { color: #4a8000; text-decoration: underline; }
.single-post-content strong { color: #333; }
.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
}

/* Back to blog */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 24px;
}
.back-to-blog:hover { color: #333; }

/* Footer */
.site-footer {
    background: #f8f9fa;
    border-top: 1px solid #eee;
    padding: 40px 20px;
    text-align: center;
}
.footer-inner {
    max-width: 800px;
    margin: 0 auto;
}
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ccc;
    margin-bottom: 12px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.footer-links a {
    font-size: 13px;
    color: #888;
}
.footer-links a:hover { color: #333; }
.footer-copy {
    font-size: 12px;
    color: #bbb;
}

/* Page title for archive */
.page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.page-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 600px) {
    .single-post-title { font-size: 26px; }
    .post-item-title { font-size: 20px; }
    .header-nav { gap: 16px; }
    .header-nav a { font-size: 13px; }
    .page-title { font-size: 26px; }
}
