/* -- Google Fonts Import für das neue Design -- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Lato:wght@400;700&display=swap');

/* -- NEUES FARBSCHEMA basierend auf dem Cover -- */
:root {
    --background-dark: #ffffff; /* Ein sehr dunkles Fast-Schwarz */
    --text-light: #f0f0f0;      /* Ein sanftes Weiß */
    --accent-fire: #ff5733;     /* Ein leuchtendes Feuer-Orange */
}

/* Grundlegende Stile */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

/* Hero-Sektion (oberer Bereich mit Bild) */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    color: var(--text-light);
    
    background-image: linear-gradient(rgba(12, 10, 9, 0.2), rgba(12, 10, 9, 0.7)), url('nuLiszt_cover_phoenix.jpg');
    
    /* --- ÄNDERUNGEN HIER --- */
    background-size: contain;  /* Geändert von 'cover' zu 'contain', um das ganze Bild zu zeigen */
    background-repeat: no-repeat; /* Verhindert, dass das Bild gekachelt wird */
    background-position: center; /* Zentriert das Bild */
}

.hero-content h1, .hero-content h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 2.5em;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 87, 51, 0.5);
}

.hero-content .subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 14px;
    opacity: 0.9;
}

.hero-content h2 {
    font-size: 4em;
    margin: 10px 0 30px 0;
    text-shadow: 0 0 15px rgba(255, 87, 51, 0.5);
}

/* Buttons und Links */
.main-button {
    display: inline-block;
    background-color: var(--accent-fire);
    color: var(--text-light);
    padding: 15px 35px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.main-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 87, 51, 0.7);
}

.streaming-links {
    margin-top: 25px;
}

.streaming-links a, .social-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.1em;
    font-weight: bold;
    transition: color 0.2s ease;
}

.streaming-links a:hover, .social-links a:hover, footer a:hover {
    color: var(--accent-fire);
}

/* Restliche Sektionen */
main {
    padding: 40px 20px;
    background-color: rgba(12, 10, 9, 0.7);
}

section {
    max-width: 800px;
    margin: 60px auto;
}

    section h3 {
        font-family: 'Cinzel', serif;
        font-size: 2em;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--text-light);
        text-shadow: 0 0 15px rgba(255, 87, 51, 0.5);
    }

.video-container {
    background-color: #000;
    border: 1px solid var(--accent-fire);
    padding: 20px;
    border-radius: 8px;
    min-height: 150px;
}

pre { /* Für den Songtext */
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
    text-align: left;
    white-space: pre-wrap;
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #000000;
    font-size: 0.9em;
}
footer a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Für kleinere Bildschirme (Handys) */
@media (max-width: 600px) {
    .hero-content h1 { font-size: 2em; }
    .hero-content h2 { font-size: 3em; }
    .streaming-links a { display: block; margin: 10px 0; }
}