/* Modern Minimalist Dark Theme (Inspired by notmyidea) */
:root {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --link-color: #4da6ff;
    --link-hover: #80bfff;
    --accent-color: #2c2c2c;
    --border-color: #333333;
    --muted-color: #888888;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
#banner {
    padding: 40px 0 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

#banner h1 a {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 2rem;
}

#banner h1 strong {
    font-weight: 300;
    color: var(--muted-color);
    display: block;
    font-size: 1.2rem;
    margin-top: 5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

nav a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease; /* minimal animation */
}

nav a:hover {
    color: var(--link-hover);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--link-color);
    text-decoration: none;
}
a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

p {
    margin-bottom: 20px;
}

/* Content Area */
#content {
    margin-bottom: 50px;
}

.intro {
    font-size: 1.1rem;
    color: var(--muted-color);
    margin-bottom: 30px;
}

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

/* Lists */
#posts-list {
    list-style: none;
}

#posts-list li {
    margin-bottom: 40px;
}

.entry-title {
    font-size: 1.8rem;
}

.post-info {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--accent-color);
}

.readmore {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    background-color: var(--accent-color);
    padding: 5px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.readmore:hover {
    background-color: #3d3d3d;
    text-decoration: none;
}

/* Footer */
#contentinfo {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    text-align: center;
    color: var(--muted-color);
    font-size: 0.9rem;
}

figure {
    margin: 20px 0;
}
figure img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--muted-color);
    margin-top: 8px;
}
