/* --- LOKALE SCHRIFTARTEN START --- */

/* montserrat-300 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/montserrat-v31-latin-300.woff2') format('woff2'),
}
/* montserrat-400 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/montserrat-v31-latin-regular.woff2') format('woff2'),
}
/* montserrat-600 - latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/montserrat-v31-latin-600.woff2') format('woff2'),
}

/* oswald-400 - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/oswald-v57-latin-regular.woff2') format('woff2'),
}
/* oswald-700 - latin */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/oswald-v57-latin-700.woff2') format('woff2'),
}

/* --- LOKALE SCHRIFTARTEN ENDE --- */

/* ... Hier folgt der restliche CSS Code von vorhin ... */

/* Grundlegende Variablen & Reset */
:root {
    --bg-color: #f4f1ea; /* Papier-Ton */
    --text-color: #2b2b2b; /* Dunkles Grau statt hartes Schwarz */
    --accent-color: #5b7f95; /* Ein abgetöntes Blau aus dem Cover */
    --font-head: 'Oswald', sans-serif; /* Ersatz für High Cruiser */
    --font-body: 'Montserrat', sans-serif; /* Ersatz für Open Sauce */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* HEADER */
.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.cover-wrapper {
    margin-bottom: 2rem;
}

.album-cover {
    width: 100%;
    max-width: 400px;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Leichter Schatten */
    /* Optional: Papier-Textur Overlay Effekt könnte hier per CSS ergänzt werden */
}

.artist-name {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.album-title {
    font-family: var(--font-head);
    font-size: 4rem; /* Groß und plakativ */
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-name {
    font-size: 1.2rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* INTRO */
.intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro p {
    margin-bottom: 1rem;
}

.intro .highlight {
    font-weight: 600;
    margin-top: 1.5rem;
}

/* STREAMING LINKS */
.streaming-links {
    text-align: center;
    margin-bottom: 5rem;
}

.streaming-links h3, .tracklist h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    text-align: center;
}

.button-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 2px;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    font-size: 1.1rem;
}

.btn.primary:hover {
    background-color: transparent;
    color: var(--text-color);
}

.btn.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

/* --- ZUSTAND: NICHT VERFÜGBAR --- */

.btn.disabled {
    opacity: 0.4;              /* Macht den Button blass/transparent */
    cursor: not-allowed;       /* Zeigt Verbotsschild-Mauszeiger */
    pointer-events: none;      /* Verhindert das Klicken technisch komplett */
    text-decoration: none;     /* Sicherstellen, dass keine Unterstriche kommen */
    box-shadow: none;
}

/* Optional: Fügt automatisch ein kleines "BALD" hinzu */
.btn.disabled::after {
    content: ' (BALD)';
    font-size: 0.7em;
    opacity: 0.7;
    margin-left: 5px;
    vertical-align: middle;
}

.btn.secondary:hover {
    border-color: var(--text-color);
}

/* ACCORDION (Tracklist) */
.tracklist {
    margin-bottom: 5rem;
}

.instruction {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 2rem;
}

.track-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Neuer Header mit Grid-Layout für Mobile */
.track-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-color);
    transition: opacity 0.2s;
    
    /* Grid Setup: 3 Spalten (Nummer | Text | Icon) */
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 15px; /* Abstand zwischen den Spalten */
    align-items: center;
}

.track-header:hover {
    opacity: 0.7;
}

.track-num {
    font-family: var(--font-head);
    font-size: 1.2rem;
    opacity: 0.4;
    width: 30px;
    
    /* Zentriert die Nummer vertikal über beide Zeilen auf Mobile */
    grid-column: 1;
    grid-row: 1 / span 2; 
    align-self: start; 
    margin-top: 2px;
}

.track-title {
    font-weight: 600;
    text-transform: uppercase;
    
    /* Position Mobile: Zeile 1 */
    grid-column: 2;
    grid-row: 1;
}

.track-author {
    font-size: 0.8rem;
    opacity: 0.6;
    
    /* Position Mobile: Zeile 2 (unter dem Titel) */
    grid-column: 2;
    grid-row: 2;
    margin-top: 2px; /* Kleiner Abstand zum Titel */
    display: block; /* Immer anzeigen! */
}

.icon {
    font-family: var(--font-head);
    font-size: 1.5rem;
    line-height: 1;
    
    /* Position Mobile: Rechts, vertikal zentriert */
    grid-column: 3;
    grid-row: 1 / span 2;
}

/* Accordion Inhalt */
.track-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.poem-text {
    padding: 10px 20px 40px 50px; /* Rechts etwas Padding für Mobile */
    font-style: italic;
    opacity: 0.9;
}

.poem-text p {
    margin-bottom: 1.5rem;
}

/* DESKTOP ANPASSUNG (ab 600px Breite) */
@media(min-width: 600px) {
    /* Zurück zum einzeiligen Layout */
    .track-header {
        display: flex;
        align-items: center;
        padding: 20px 0;
    }

    .track-num {
        width: auto;
        margin-right: 20px;
        margin-top: 0;
        align-self: center;
    }
    
    .track-title {
        flex-grow: 1; /* Titel füllt den Platz */
    }

    .track-author {
        margin-top: 0;
        margin-right: 20px;
        /* Kein Grid mehr nötig, Author rutscht nach rechts */
    }
    
    .poem-text {
        padding-right: 0; /* Standard Padding */
    }
}

/* FOOTER */
footer {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-bottom: 2rem;
}

footer a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

/* MODAL / POPUP */
.modal {
    display: none; 
    position: fixed; 
    z-index: 100; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: var(--bg-color);
    margin: 10% auto; 
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

/* Mobile Anpassungen */
@media(max-width: 600px) {
    .album-title { font-size: 2.5rem; }
    .poem-text { padding-left: 0; text-align: left; }
}

