/* GLOBAL RESETS & VARIABLES */
:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #141414;
    --text-color: #e0e0e0;
    --primary-neon: #00f2ea; /* Cyan */
    --secondary-neon: #b026ff; /* Purple */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-neon);
    text-shadow: 0 0 10px var(--primary-neon);
}

.nav-links { display: flex; gap: 30px; }

.nav-links a {
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover { color: var(--primary-neon); }

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1571266028243-371695039989?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.neon-text {
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(0, 242, 234, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-main {
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--secondary-neon), var(--primary-neon));
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.6);
}

/* SECTIONS GENERAL */
.section-container {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.bg-darker { background-color: var(--bg-secondary); width: 100%; max-width: 100%; }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-neon);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* RELEASE CARD */
.release-card {
    display: flex;
    flex-wrap: wrap;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: left;
    border: 1px solid #333;
}

.release-image {
    flex: 1;
    min-width: 300px;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.release-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
}

.artist-tag {
    color: var(--primary-neon);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.description {
    color: #bbb;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* STREAMING LINKS */
.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-store {
    padding: 10px 20px;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-store:hover { background: #333; border-color: var(--primary-neon); }

.spotify:hover i { color: #1DB954; }
.youtube:hover i { color: #FF0000; }
.soundcloud:hover i { color: #ff5500; }
.apple:hover i { color: #ffffff; }

/* ABOUT & FOOTER */
.about-content p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    color: #ccc;
}

footer {
    text-align: center;
    padding: 50px 20px;
    background: #000;
    border-top: 1px solid #222;
}

.footer-content h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--secondary-neon);
}

.socials {
    margin: 20px 0;
}

.socials a {
    font-size: 1.5rem;
    margin: 0 15px;
    color: #888;
    transition: 0.3s;
}

.socials a:hover { color: var(--primary-neon); transform: translateY(-3px); display: inline-block; }

.copyright { font-size: 0.8rem; color: #555; }

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .navbar { padding: 15px 20px; flex-direction: column; }
    .nav-links { margin-top: 15px; gap: 15px; }
    .release-card { flex-direction: column; }
    .release-info { text-align: center; }
    .streaming-links { justify-content: center; }
}

/* --- BILDER GALERIE STYLES --- */

/* Passt die Höhe der Hero-Section an, damit Platz für Bilder ist */
.hero {
    min-height: 100vh; 
    height: auto; 
    padding-top: 120px; /* Mehr Platz oben wegen Navi */
    padding-bottom: 50px;
}

.hero-gallery {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.gallery-item {
    background: rgba(0, 0, 0, 0.5); /* Dunkler Hintergrund */
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon); /* Leuchtet beim Drüberfahren */
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.2);
}

.gallery-item img {
    width: 220px; /* Größe der Bilder */
    height: 220px;
    object-fit: cover; /* Schneidet Bild zurecht, damit es quadratisch bleibt */
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
}

.gallery-item .caption {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Optimierung für Handys */
@media (max-width: 768px) {
    .hero-gallery {
        flex-direction: column;
        align-items: center;
    }
}

/* --- DETAIL PAGE STYLES --- */

/* Detail Header */
.detail-header {
    height: 40vh; /* Reduced from 60vh to make it shorter */
    /* Background image is now handled in the HTML file */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
}

.detail-header .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(0, 242, 234, 0.6);
}

.header-content .subtitle {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* The Story Text */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: #111;
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-neon);
}

.story-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ddd;
}

/* Versions Grid */
.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.version-card {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.version-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 30px rgba(0, 242, 234, 0.1);
}

.v-img {
    height: 200px;
    overflow: hidden;
}

.v-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.version-card:hover .v-img img {
    transform: scale(1.1);
}

.v-text {
    padding: 25px;
    text-align: left;
}

.v-text h3 {
    font-family: var(--font-heading);
    color: var(--secondary-neon);
    margin-bottom: 10px;
}

.v-text p {
    font-size: 0.95rem;
    color: #bbb;
}

/* Lyrics Section */
.lyrics-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lyrics-box {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 5px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #333;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.lyrics-box p {
    white-space: pre-line;
    line-height: 1.0; /* Reduced from 1.8 to close the gaps */
    color: #e0e0e0;
    font-size: 1rem;
}

.btn-download {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content h1 { font-size: 2.5rem; }
    .story-content { padding: 20px; }
}

/* --- LISTEN ON ICONS STYLES --- */

.listen-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #333; /* A subtle divider line */
    display: flex;
    align-items: center;
    gap: 15px; /* Space between text and icons */
}

.listen-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #888;
    text-transform: uppercase;
}

.listen-icons {
    display: flex;
    gap: 15px; /* Space between the icons */
}

.icon-link {
    font-size: 1.5rem; /* Icon size */
    color: #555; /* Default color */
    transition: transform 0.2s, color 0.2s;
}

.icon-link:hover {
    transform: scale(1.2); /* Grows slightly when hovered */
}

/* Specific Brand Colors on Hover */
.icon-link.spotify:hover { color: #1DB954; }
.icon-link.apple:hover { color: #ffffff; }
.icon-link.youtube:hover { color: #FF0000; }