/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Roboto:wght@400;700&display=swap');

/* --- Grundlegende Styles & Dark Theme --- */
:root {
    --primary-color: #ffffff;
    --secondary-color: #aaaaaa;
    --background-color: #121212;
    --overlay-color: rgba(10, 10, 10, 0.75);
    --accent-color: #00aaff; /* Ein Akzent für Hover-Effekte */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    /* WICHTIG: Der Pfad zum Hintergrundbild muss im CSS angepasst werden, wenn es im images-Ordner liegt */
    /* Da dein Bild aber auf einer externen URL liegt (lakeno1.de), muss hier nichts geändert werden. */
    background-image: linear-gradient(var(--overlay-color), var(--overlay-color)), url('https://2fromfn.lakeno1.de/images/2fromfn_bg.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

h3 {
    color: var(--primary-color);
    margin-top: 25px;
}

/* --- Header & Logo --- */
.header {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
    
    /* Hintergrundbild-Regeln bleiben */
    background-image: url('https://2fromfn.lakeno1.de/images/2FromFN_Web_Header.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* border-radius und overflow entfernt für saubere Kanten */
}
.logo-placeholder {
    width: 450px;
    height: 450px;
    border: 0px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* <-- DIESE ZEILE HINZUFÜGEN */
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Sektionen Allgemein --- */
.music-section, .album-section, .bio-section {
    padding: 40px 20px;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-bottom: 40px;
}

.music-section h2, .album-section h2, .bio-section h2 {
    font-size: 2rem;
    text-align: center;
}

audio {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.song-artwork {
    margin: 20px auto 30px auto; /* 'auto' sorgt für die Zentrierung */
    text-align: center; /* Zentriert den Inhalt zusätzlich */
}

.song-artwork img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 5px;
}

/* --- Album Sektion --- */
.album-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.album-cover img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.album-details {
    text-align: left;
    max-width: 400px;
}

.album-details .release-info {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-style: italic;
}

.album-details ol { list-style-position: inside; padding-left: 5px; }
.album-details li { margin-bottom: 5px; color: var(--secondary-color); }

/* --- Biografie Sektion mit "Mehr lesen" --- */
.bio-section {
    text-align: left;
}

.bio-content {
    max-height: 125px; /* Höhe für den Teaser */
    overflow: hidden;
    position: relative;
    transition: max-height 0.7s ease-in-out;
}

.bio-content.expanded {
    max-height: 3000px; /* Sicherer, extrem hoher Wert, der immer ausreicht */
}

.bio-content p {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-align: justify;
}

#toggle-bio-btn {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

#toggle-bio-btn:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
}

/* --- Social Media Sektion --- */
.social-section {
    padding: 40px 20px;
}
.social-links { list-style: none; display: flex; justify-content: center; gap: 25px; }
.social-links a { color: var(--primary-color); font-size: 2.5rem; transition: color 0.3s ease, transform 0.3s ease; }
.social-links a:hover { color: var(--accent-color); transform: scale(1.2); }

/* --- Footer --- */
footer { padding: 20px; margin-top: 40px; color: var(--secondary-color); font-size: 0.9rem; }


/* --- NEU: Audio Player Styling --- */
.audio-player-wrapper {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 25px;
    max-width: 500px;
    margin: 30px auto 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.audio-player-wrapper audio {
    width: 100%;
    margin: 0;
    /* Dieser Filter passt die Farben des Players an euren Akzent an */
    filter: sepia(1) saturate(20) hue-rotate(150deg) brightness(0.9);
}


/* --- Mobile Responsiveness --- */
@media (min-width: 768px) {
    .album-container { flex-direction: row; align-items: flex-start; }
    .logo-placeholder {
         width: 350px;
         height: 350px;
    }
}

@media (max-width: 768px) {
    .header h1 { font-size: 2.5rem; }
    .social-links a { font-size: 2rem; }
    .album-details { text-align: center; }
    .album-details ol { text-align: left; }
    .logo-placeholder {
        width: 250px;
        height: 250px;
    }
}

/* --- NEU: Countdown Styling --- */
#countdown {
    display: flex;
    justify-content: space-around;
    text-align: center;
    /* Vertikaler Abstand oben/unten, 'auto' für links/rechts zentriert */
    margin: 25px auto; 
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Setzt eine maximale Breite, damit der Block zentriert werden kann */
    max-width: 450px; 
}

.countdown-item {
    display: flex;
    flex-direction: column;
}

.countdown-item span:first-child {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--primary-color);
}

.countdown-item span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.release-now {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    width: 100%;
}

/* --- NEU: Video Teaser Sektion Styling --- */
.video-section {
    padding: 40px 20px;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-bottom: 40px;
}

.video-section h2 {
    font-size: 2rem;
    text-align: center;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.video-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-card video {
    width: 100%;
    height: auto;
    display: block;
}

.video-card .video-title {
    padding: 15px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-color);
    margin: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- NEU: Spotify Player Sektion --- */
.spotify-embed-section {
    padding: 40px 20px;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    margin-bottom: 40px;
}

.spotify-embed-section h2 {
    font-size: 2rem;
    text-align: center;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.spotify-embed-section iframe {
    border-radius: 12px;
    border: none;
}