:root {
    --bg-color: #faf9f6;
    --text-color: #2c2c2c;
    --text-muted: #666;
    --link-color: #2c2c2c;
    --link-hover: #000;
    --border-color: #2c2c2c;
    --accent-bg: #f0f0f0;
    --badge-red: #c41e3a;  /* subtileres Rot */
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-color);
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Home Page */
.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.image-section {
    text-align: center;
    margin: 3rem 0;
}

.image-wrapper {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.image-wrapper img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.content {
    text-align: center;
    margin: 3rem 0;
}

.description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.links {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.links a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
    margin: 0 0.25rem;
}

.links a:hover {
    border-bottom-color: var(--text-color);
}

.footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
}

/* 88x31 BADGES - minimalistisch & subtil */
.badges {
    margin: 3rem auto;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    max-width: 500px;
}

.badge-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.badge-wall img {
    width: 88px;
    height: 31px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.badge-wall img:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Politische Badges - nur subtile Akzente */
.badges.political {
    border-top: 1px dashed var(--badge-red);
    border-bottom: none;
    margin-top: 2rem;
    padding-top: 1rem;
}

.badges.political::before {
    content: "//";
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2em;
    font-family: monospace;
}

/* Archive, Thoughts, Projects Pages */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.archive-card {
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.archive-card:hover {
    background-color: var(--accent-bg);
    transform: translateY(-2px);
}

.archive-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.archive-card hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0.75rem 0;
}

.archive-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Thoughts & Projects List */
.thoughts-list,
.projects-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thought-item,
.project-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.thought-item:last-child,
.project-item:last-child {
    border-bottom: none;
}

.thought-header,
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.thought-header h3,
.project-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.thought-header a,
.project-header a {
    color: var(--text-color);
    text-decoration: none;
}

.thought-header a:hover,
.project-header a:hover {
    text-decoration: underline;
}

.thought-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: monospace;
}

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

.thought-item hr,
.project-item hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 0.75rem 0;
}

.thought-excerpt,
.project-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 600px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .thought-header,
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
/* BADGES - schlicht, eine Zeile */
.badges {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.badges img {
    width: 88px;
    height: 31px;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.badges img:hover {
    opacity: 1;
}
}