/* Allgemeine Stile */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 4px solid #34495e;
}

.site-header h1 {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.site-header .subtitle {
    margin: 10px 0 0 0;
    font-size: 1.1rem;
    color: #bdc3c7;
}

/* Hauptinhalt */
.main-content {
    padding: 40px 20px;
}

.intro-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    border-left: 5px solid #2c3e50;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

/* Chronologische Timeline */
.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 3px solid #34495e;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #34495e;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 5px;
}

.timeline-content {
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border: 1px solid #eef2f3;
}

.timeline-content p {
    margin: 0;
}

.timeline-content em {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Ausblick & Link */
.outlook-section {
    background-color: #edf2f7;
    padding: 25px;
    border-radius: 6px;
    margin-top: 40px;
    border: 1px solid #cbd5e0;
}

.outlook-section h2 {
    margin-top: 0;
    color: #2c3e50;
}

.outlook-section a {
    color: #3182ce;
    text-decoration: none;
    font-weight: bold;
}

.outlook-section a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: 60px;
    border-top: 4px solid #34495e;
}

.site-footer p {
    margin: 0;
}

/* Footer Links Sichtbarkeit - Lila Farbtöne für hohe Lesbarkeit auf dunklem Grund */
.site-footer a {
    color: #d6bcfa; /* Helles, leuchtendes Lila/Violett */
    text-decoration: underline;
    font-weight: bold;
}

.site-footer a:hover {
    color: #e9d8fd; /* Noch helleres Flieder beim Darüberfahren */
    text-decoration: none;
}
