/* Grundlegendes Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background-color: #f4f4f4; }

/* Navigation */
.navbar {
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-size: 1.5rem; font-weight: bold; }

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links li a {
    text-decoration: none;
    color: #ecf0f1;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-links li a:hover { background-color: #34495e; }
.nav-links li a.active { background-color: #e74c3c; color: white; }

/* Container */
.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: white;
    min-height: 60vh;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 2rem;
    border-radius: 8px;
}

/* Blog & Foto Einträge */
.entry {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}
.entry:last-child { border-bottom: none; }

.entry h2 { color: #2c3e50; margin-bottom: 0.5rem; }
.entry .date { color: #7f8c8d; font-size: 0.9rem; margin-bottom: 1rem; display: block; }
.entry img { max-width: 100%; height: auto; border-radius: 4px; margin-top: 1rem; }

/* Footer */
footer { text-align: center; padding: 2rem; color: #7f8c8d; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 600px) {
    .navbar { flex-direction: column; gap: 1rem; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
}
