/* ===== Kaspersky-inspired Color Schemes ===== */
/* Option 1: Dark Green Dominant (Primary) */
:root {
    --primary-dark: #00332a;       /* Deep Kaspersky-like green */
    --primary: #00695c;            /* Medium security green */
    --primary-light: #4db6ac;      /* Accent teal-green */
    --text-on-dark: #f5f5f5;       /* Off-white for readability */
    --text-on-light: #263238;      /* Dark grey for text */
    --background: #f8f8f8;         /* Light grey background */
    --card-bg: #ffffff;            /* Pure white cards */
    --border: #e0e0e0;            /* Subtle borders */
}

/* Option 2: Grey Dominant (Alternative) */
/*
:root {
    --primary-dark: #2c3e50;       /* Dark slate blue-grey */
    --primary: #34495e;            /* Medium grey-blue */
    --primary-light: #7f8c8d;      /* Cool grey accent */
    --text-on-dark: #ecf0f1;       /* Bright off-white */
    --text-on-light: #2c3e50;      /* Dark text */
    --background: #f5f7fa;         /* Very light grey */
    --card-bg: #ffffff;            /* Pure white cards */
    --border: #d5dbdb;            /* Light grey borders */
}
*/

/* ===== Base Styles ===== */
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--background);
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--text-on-dark);
    padding: 3rem 1rem;
    text-align: center;
}

header h1 {
    font-weight: 600;
    margin: 0;
    font-size: 2.5rem;
}

.mission {
    font-style: italic;
    opacity: 0.9;
    max-width: 800px;
    margin: 1rem auto 0;
    font-weight: 300;
}

/* ===== Post Styles ===== */
#posts {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

article {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-dark);
    border-top: 4px solid var(--primary-dark);
    transition: transform 0.2s ease;
}

article:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

article h2 {
    color: var(--primary-dark);
    margin-top: 0;
    font-size: 1.8rem;
}

time {
    display: block;
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content {
    color: var(--text-on-light);
}

.content h1, 
.content h2, 
.content h3 {
    color: var(--primary-dark);
    margin-top: 1.5em;
}

.content a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-light);
    transition: all 0.2s;
}

.content a:hover {
    color: var(--primary-dark);
    border-bottom-style: solid;
}

/* ===== Typography Enhancements ===== */
.content p {
    margin-bottom: 1.2em;
    line-height: 1.7;
}

.content strong {
    color: var(--primary-dark);
}

.content em {
    color: var(--primary);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    article {
        padding: 1.5rem;
    }
}

/* Old style
body {
    font-family: sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.mission {
    font-style: italic;
    color: #555;
}

article {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

time {
    display: block;
    color: #666;
    font-size: 0.9em;
    margin-bottom: 1rem;
}
*/
