/* Grunddesign der Seite */
body {
    background-color: #e2d8bf; /* Gemütliches Ocker/Beige */
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    color: #333333;
    margin: 0px;
    padding: 40px 20px; /* 40px oben/unten, 20px links/rechts */
}

h1 {
    font-size: 2.0em;
    margin-bottom: 20px;
    text-transform: lowercase;
}

/* Navigations-Buttons (einheitlich auf jeder Seite) */
.nav-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #e6e6e6;
    color: #0000cc;
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.9em;
    border: 1px solid #cccccc;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #d0d0d0;
}

/* Container für Inhalte */
.content-box {
    max-width: 800px;
    margin: 0px auto;
    background-color: rgba(255, 255, 255, 0.2); /* Leicht transparenter Hintergrund */
    padding: 20px;
    border-radius: 10px;
}

.back-link {
    display: block;
    margin-top: 30px;
    color: #333333;
    font-size: 0.8em;
}
/* Zusätzliche Stile für die Filter-Buttons auf den Unterseiten */
.btn-small {
    padding: 4px 10px;
    font-size: 0.8em;
    background-color: #f0f0f0;
    border: 1px solid #bbbbbb;
    border-radius: 10px;
    text-decoration: none;
    color: #333333;
    margin: 0px 5px;
}

.filter-bar {
    padding: 10px 0px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
/* Zeitstrahl Design */
.timeline-wrapper {
    position: relative;
    padding: 100px 0px; /* Platz für Sterne oben und unten */
    margin: 50px 0px;
    overflow-x: auto; /* Scrollbar, falls der Zeitstrahl zu lang wird */
}

.main-axis {
    width: 2000px; /* Breite für Jahre 2020-2027 */
    height: 4px;
    background-color: #333333;
    position: relative;
    margin: 0px auto;
}

/* Jahresmarkierungen */
.year-marker {
    position: absolute;
    top: 10px;
    font-weight: bold;
    font-size: 14px;
}

/* Die Verbindungslinie zum Stern */
.connector {
    position: absolute;
    width: 2px;
    background-color: #333333;
    left: 50%;
}

/* Der lila Stern */
.star-node {
    position: absolute;
    color: #800080; /* Lila */
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    left: 50%;
    transform: translateX(-50%);
}

.star-node:hover {
    color: #b000b0;
    transform: translateX(-50%) scale(1.3);
}

/* Position oben */
.pos-up .connector { bottom: 0px; height: 60px; }
.pos-up .star-node { top: -85px; }

/* Position unten */
.pos-down .connector { top: 0px; height: 60px; }
.pos-down .star-node { bottom: -85px; }

/* Zentriertes Design für die Poesie */
.poem-container {
    margin-top: 0px;
    margin-left: auto; /* Zentriert den Block horizontal */
    margin-right: auto; /* Zentriert den Block horizontal */
    margin-bottom: 1.5cm; /* Abstand auf 1.5cm verringert */
    text-align: center; /* Zentriert den Titel und das Symbol */
    max-width: 500px;
    padding: 20px 20px;
}

.poem-title {
    font-size: 1.6em;
    color: #333333;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.poem-meta {
    font-size: 0.8em;
    color: #800080;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
}

.poem-body {
    font-size: 1.1em;
    line-height: 1.7em;
    display: inline-block; /* Sorgt dafür, dass der Textblock als Ganzes zentriert wird */
    text-align: left; /* Die einzelnen Zeilen fangen aber alle links an (sieht sauberer aus) */
    margin-bottom: 0px;
}

/* Das "✦" Symbol am Ende jedes Gedichts */
.poem-container::after {
    content: "✦";
    display: block;
    text-align: center;
    color: #800080; /* Kräftiges Lila passend zum Rest */
    opacity: 0.6; /* 0.6 Transparenz für einen edlen Look */
    margin-top: 25px; /* 25px Abstand nach dem Text */
    font-size: 18px; /* Größe auf 18px erhöht für bessere Sichtbarkeit */
    width: 100%;
}
/* Der gesamte Textblock wird als Einheit zentriert */
.poem-text-block {
    display: inline-block; /* Der Block ist so breit wie die längste Zeile des GANZEN Gedichts */
    text-align: left;      /* Alle Zeilen darin fangen brav links an */
}

.poem-body {
    font-size: 1.1em;
    line-height: 1.7em;
    margin-bottom: 25px;   /* Abstand zwischen den Strophen */
    display: block;        /* Jetzt ein normales Block-Element */
}

.poem-container {
    text-align: center;    /* Zentriert den Titel, das Datum und den poem-text-block */
    margin-bottom: 1.5cm;
}
.poem-container {
    text-align: center; /* Zentriert Titel und Datum */
    margin-bottom: 1.2cm; /* Abstand zwischen den Gedichten */
    padding: 0px 20px;
}

.poem-text-block {
    display: block;
    text-align: center; /* Das ist der entscheidende Teil für die Verse */
    margin: 0px auto;
}

.poem-body {
    font-size: 1.1em;
    line-height: 1.7em;
    margin-bottom: 25px; /* Abstand zwischen den Strophen */
    text-align: center; /* Jede Zeile richtet sich nun an der Mitte aus */
}

.poem-container::after {
    content: "✦";
    display: block;
    text-align: center;
    color: #800080;
    opacity: 0.6;
    margin-top: 30px;
    font-size: 18px;
}
/* Musik-Karten Styling */
.music-card {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.music-card h3 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333333;
}

audio {
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

/* Container für Spotify-Embeds */
.spotify-container {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden; /* Damit die Ecken des Players abgerundet bleiben */
}
/* Teaser & Newest Section */
.music-section {
    margin-bottom: 50px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

/* Album Grid: 2 pro Reihe */
.album-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei gleich große Spalten */
    gap: 30px; /* Abstand zwischen den Alben */
    margin-top: 20px;
}

.album-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease-in-out;
}

.album-item:hover {
    transform: scale(1.03); /* Leichter Zoom-Effekt beim Hover */
}

.album-cover {
    width: 120px;
    height: 120px;
    background-color: #cccccc;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
}

.album-info h4 {
    margin: 0px 0px 5px 0px;
    font-size: 1.1em;
    color: #333333;
}

.album-info p {
    margin: 0px;
    font-size: 0.85em;
    color: #666666;
    line-height: 1.4em;
}
/* Film-Ecke Styling */
.filter-nav {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Automatische Spalten ab 200px */
    gap: 30px;
    margin-top: 20px;
}

.movie-card {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 15px;
}

.movie-card:hover {
    transform: scale(1.05);
}

.movie-poster {
    width: 100%;
    height: 300px; /* Einheitliche Höhe für alle Cover */
    object-fit: cover;
    border-bottom: 2px solid #800080;
}

.movie-info h3 {
    font-size: 1.1em;
    margin: 10px 0px 5px 0px;
    text-transform: lowercase;
}

.rating {
    font-size: 1.2em;
    margin-bottom: 8.0px;
    color: #ffcc00;
    /* Ein sauberer Font für die Symbole */
    font-family: Arial, sans-serif; 
    /* Webkit-Text-Stroke ist viel glatter als Text-Shadow */
    -webkit-text-stroke: 0.8px #000000; 
    /* Fallback für Browser, die Stroke nicht perfekt rendern */
    paint-order: stroke fill;
}

.genre-tag {
    font-size: 0.75em;
    background: rgba(128, 0, 128, 0.2);
    color: #800080;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}
.movie-poster {
    width: 100%;
    aspect-ratio: 624 / 933;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}