@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Lato:wght@400;700&display=swap');

:root {
    --background-color: #ffffff;
    --text-color: #1a1a1a;
    --headline-color: #000000;
    --accent-color: #ff00ff; /* Vibrant Magenta */
    --border-color: #e6e6e6;
    --muted-text-color: #666666;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: var(--headline-color);
    text-transform: uppercase;
    line-height: 1.2;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

.navbar {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--headline-color) !important;
}

.container {
    max-width: 1200px;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.post-list .post-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.post-list .post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post-category {
    font-family: 'Oswald', sans-serif;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-title a {
    color: var(--headline-color);
    font-size: 2.2rem;
}

.post-meta {
    color: var(--muted-text-color);
    font-size: 0.9rem;
}

.sidebar .widget {
    margin-bottom: 3rem;
    background-color: #f7f7f7;
    padding: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 1rem;
}
.widget ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.post-content {
    font-size: 1.1rem;
}

pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 1.5rem;
    border-radius: 4px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Menlo', 'Monaco', monospace;
    font-size: 0.9rem;
}

.footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    color: var(--muted-text-color);
}

.btn-primary {
    background-color: #212529;
    border-color: #212529;
}

.btn-primary:hover {
    background-color: #000;
    border-color: #000;
}

.form-control {
    border-radius: 0;
    border: 1px solid #6c757d;
}

.form-control:focus {
    box-shadow: none;
    border-color: #212529;
}

.card {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0;
}

.card-title {
    color: #0d6efd;
}

.card-body a {
    color: #0d6efd;
    text-decoration: none;
}

.card-body a:hover {
    text-decoration: underline;
}

.list-group-item {
    background-color: #1e1e1e;
    border: 1px solid #333;
}

.form-label {
    color: #e0e0e0;
} 