
:root {
    --bg: #02030a;
    --bg-alt: #06081a;
    --accent: #ff6b00;
    --accent-2: #00e5ff;
    --accent-soft: rgba(255, 107, 0, 0.18);
    --text: #f5f5f7;
    --text-muted: #a3a7c2;
    --card: rgba(10, 12, 26, 0.98);
    --border: rgba(255, 255, 255, 0.08);
    --danger: #ff3860;
    --radius-lg: 24px;
}

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

html, body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0, 229, 255, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 107, 0, 0.25), transparent 60%),
        linear-gradient(135deg, #02030a, #050716 60%, #02030a);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    header {
        padding: 18px 40px;
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: conic-gradient(from 180deg,
    var(--accent), var(--accent-2), #7c3aed, var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.7);
    font-size: 14px;
    font-weight: 700;
}

.brand-text-main {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-text-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

nav {
    display: none;
    gap: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

.nav-link {
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.2s ease-out;
}

.nav-link:hover::after {
    width: 100%;
}

/* Aktiver Menüpunkt im Header */
.nav-link-active::after {
    width: 100%;
}


.hero {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 12px 18px 26px;
}

@media (min-width: 1024px) {
    .hero {
        padding: 20px 40px 40px;
    }
}

.hero-inner {
    width: 100%;
    max-width: 1120px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
}

.hero-main,
.hero-side {
    background: radial-gradient(circle at top left,
    rgba(148, 163, 184, 0.18), transparent 55%),
    var(--card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 18px 16px 16px;
    backdrop-filter: blur(18px);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

@media (min-width: 768px) {
    .hero-main,
    .hero-side {
        padding: 22px 22px 18px;
    }
}

.pill-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 11px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.22), rgba(0, 229, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #28ff86;
    box-shadow: 0 0 10px rgba(40, 255, 134, 0.9);
}

.hero-title {
    font-size: clamp(1.9rem, 5vw, 2.7rem);
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-highlight {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 18px;
}

.hero-text {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.hero-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.genre-tag {
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: radial-gradient(circle at top left, var(--accent-soft), transparent 60%);
    color: var(--text-muted);
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    background: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ffc400);
    color: #05030a;
    box-shadow:
        0 0 18px rgba(255, 107, 0, 0.7),
        0 12px 32px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-ghost {
    border-color: rgba(148, 163, 184, 0.5);
    color: var(--text-muted);
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.24), transparent 60%);
}

/* Streaming/Profile-Buttons Hover-Effekt */
.hero-link-btn {
    transition:
        transform 0.12s ease-out,
        box-shadow 0.15s ease-out,
        border-color 0.15s ease-out,
        background-color 0.15s ease-out;
}

.hero-link-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(56,189,248,0.8); /* leicht türkis */
    box-shadow: 0 0 14px rgba(56,189,248,0.45);
    background-color: rgba(15,23,42,0.9);
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.9);
}

.hero-side-title {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.albums-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.album-card {
    padding: 9px 10px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.85));
}

.album-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.album-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.album-style {
    font-size: 0.75rem;
    color: var(--accent-2);
}

.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
}

.upcoming-item {
    padding: 7px 9px;
    border-radius: 10px;
    border: 1px dashed rgba(148, 163, 184, 0.36);
    background: rgba(5, 8, 24, 0.9);
}

.upcoming-header {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 3px;
}

.upcoming-title {
    font-weight: 500;
}

.upcoming-type {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
}

.upcoming-highlight {
    color: var(--text-muted);
}

.upcoming-date {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.db-error {
    margin-top: 10px;
    padding: 7px 9px;
    border-radius: 10px;
    border: 1px solid rgba(255, 56, 96, 0.7);
    background: rgba(80, 0, 20, 0.5);
    font-size: 0.78rem;
    color: #ffe5ec;
}

footer {
    padding: 10px 18px 16px;
    font-size: 0.76rem;
    color: var(--text-muted);
    text-align: center;
}

@media (min-width: 768px) {
    footer {
        padding: 12px 40px 18px;
        text-align: right;
    }
}

.hero-links {
    margin-top: 10px;
}

.hero-links-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-links-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hero-link-btn {
    font-size: 0.72rem;
    padding: 4px 10px;
}

/* ===== Albums-Seite ===== */

.albums-page {
    align-items: flex-start;
}

/* Grid für Album-Auswahl oben */
.album-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.album-select-card {
    display: flex;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.4);
    background: radial-gradient(circle at top left,
                 rgba(148,163,184,0.18), transparent 60%),
                 rgba(5,8,24,0.96);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.album-select-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 14px rgba(255,107,0,0.4);
    transform: translateY(-1px);
}

.album-select-card--active {
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(255,107,0,0.6);
}

.album-select-cover img {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    object-fit: cover;
}

.album-select-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.album-select-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.album-select-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.album-select-style {
    font-size: 0.75rem;
    color: var(--accent-2);
}

/* Trackliste rechts */

.tracklist {
    margin-top: 4px;
}

.tracklist-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.tracklist-table th,
.tracklist-table td {
    padding: 6px 5px;
    border-bottom: 1px solid rgba(148,163,184,0.3);
    vertical-align: top;
}

.tracklist-table th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
}

.tracklist-table tr:last-child td {
    border-bottom: none;
}

.tracklist-no {
    width: 30px;
    text-align: right;
    color: var(--text-muted);
}

.tracklist-title {
    font-weight: 500;
}

.tracklist-style {
    color: var(--text-muted);
}

.tracklist-length {
    width: 55px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.tracklist-lyrics details {
    font-size: 0.75rem;
}

.tracklist-lyrics summary {
    cursor: pointer;
    color: var(--accent-2);
}

.tracklist-lyrics-text {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(148,163,184,0.3);
}

/* Mobile Anpassungen */

@media (max-width: 900px) {
    .albums-page {
        flex-direction: column;
    }

    .tracklist-table th:nth-child(3),
    .tracklist-table td:nth-child(3) {
        display: none; /* Style-Spalte auf sehr kleinen Screens ausblenden, optional */
    }
}

/* einspaltiges Layout für Seiten, wo alles untereinander soll */
.hero-single-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Section-Titel auf der Startseite */
.home-section-title {
    margin-top: 18px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

/* Albums-Seite bleibt beim bisherigen Grid für die Album-Kacheln */

/* Trackliste als Cards untereinander */

.albums-tracklist {
    margin-top: 10px;
}

.tracklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.4);
    background: radial-gradient(circle at top left,
                 rgba(148,163,184,0.18), transparent 60%),
                 rgba(5,8,24,0.96);
    padding: 8px 10px;
}

.track-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.track-no {
    width: 26px;
    text-align: right;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.track-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.track-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.track-style {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.track-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.track-length {
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.track-lyrics-toggle {
    font-size: 0.72rem;
    padding: 3px 8px;
}

/* scrollbare Lyrics-Box unter dem Track-Titel */
.track-lyrics-box {
    margin-top: 8px;
    padding: 8px;
    border-radius: 10px;
    border: 1px solid rgba(148,163,184,0.5);
    background: rgba(15,23,42,0.96);
    max-height: 220px;
    overflow-y: auto;
    font-size: 0.8rem;
    line-height: 1.4;
}
/* Featured Projects auf der Startseite:
   Desktop: Grid bis 4 Spalten, Mobile automatisch untereinander */
.albums-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

/* Karten bleiben wie gehabt, evtl. etwas kompakter */
.album-card {
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.4);
    background: radial-gradient(circle at top left,
                 rgba(148,163,184,0.18), transparent 60%),
                 rgba(5,8,24,0.96);
    padding: 10px 10px;
}
/* Upcoming-Einträge: Grid wie bei Featured */
.upcoming-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    margin-top: 8px;
}

.upcoming-item {
    border-radius: 14px;
    border: 1px solid rgba(148,163,184,0.4);
    background: radial-gradient(circle at top left,
                 rgba(56,189,248,0.14), transparent 60%),
                 rgba(5,8,24,0.96);
    padding: 8px 10px;
}

.track {
    margin-bottom: 0.75rem;
}

.track-main {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.9rem 1.4rem;
    border-radius: 18px;
    border: none;
    background: rgba(7, 16, 40, 0.95);
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.track-main:hover,
.track-main:focus-visible {
    background: linear-gradient(90deg, rgba(53, 106, 255, 0.35), rgba(255, 111, 0, 0.25));
    transform: translateY(-1px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6);
    outline: none;
}

.track-number {
    font-weight: 600;
    opacity: 0.6;
    min-width: 1.5rem;
}

.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.track-title {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.track-subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.1rem;
}

.track-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.track-length {
    font-size: 0.82rem;
    opacity: 0.8;
}

.track-lyrics-chip {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.35);
}

/* Lyrics-Panel unter dem Track */
.track-lyrics {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
}

.track-lyrics.is-open {
    max-height: 600px; /* reicht für normale Texte */
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.4rem;
}

.track-lyrics-inner {
    padding: 1.1rem 1.4rem 1.3rem;
    border-radius: 16px;
    background: rgba(5, 10, 32, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    line-height: 1.6;
}

.track-lyrics-inner h4 {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

.track-lyrics-inner pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: inherit;
}
/* === Albums – Tracklist Layout ==== */

.tracklist {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* komplette Zeile = klickbare Card */
.track-item {
    position: relative;
}

.track-header {
    width: 100%;
    border: none;
    background: radial-gradient(circle at top left,
                rgba(41, 75, 157, 0.35),
                rgba(8, 13, 36, 0.98));
    border-radius: 20px;
    padding: 0.9rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    cursor: pointer;
    text-align: left;
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.15s ease;
}

.track-header:hover,
.track-header.is-open {
    background: linear-gradient(90deg,
                rgba(60, 120, 255, 0.45),
                rgba(255, 140, 70, 0.45));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
}

.track-no {
    font-weight: 600;
    opacity: 0.7;
    font-size: 0.9rem;
    min-width: 1.4rem;
}

.track-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.track-title {
    font-weight: 600;
    letter-spacing: 0.04em;
}

.track-style {
    font-size: 0.8rem;
    opacity: 0.75;
}

.track-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.8rem;
}

.track-length {
    opacity: 0.8;
}

/* Lyrics-Badge statt hässlichem weißen Button */
.track-lyrics-chip {
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(3, 6, 20, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.7rem;
    white-space: nowrap;
}

/* === Lyrics-Box unter der Card === */

.track-lyrics-box {
    margin-top: 0.45rem;
    padding: 1rem 1.25rem 1.1rem;
    border-radius: 16px;
    background: rgba(5, 10, 32, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    line-height: 1.6;
}

.track-lyrics-box[hidden] {
    display: none;
}
/* === Tracklist Feinschliff ================================== */

/* alles in der Trackliste linksbündig */
.tracklist,
.track-item,
.track-header,
.track-main {
    text-align: left;
}

/* Inhalt der Track-Mitte links ausrichten */
.track-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Titel gut lesbar machen */
.track-title {
    color: #f7f8ff;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}

/* Style/Untertitel etwas heller und kleiner */
.track-style {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    opacity: 1; /* falls vorher runtergedreht */
}

/* Sicherheitshalber: Nummer & Länge auch gut lesbar */
.track-no,
.track-length {
    color: rgba(255, 255, 255, 0.9);
}
/* Lyrics-Chip immer mit klarer, weißer Schrift */
.track-lyrics-chip {
    color: #ffffff !important;
    font-weight: 600;
}
body {
    background-attachment: fixed !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-card {
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: radial-gradient(circle at top left,
                rgba(60,120,255,0.25),
                rgba(5,10,32,0.98));
}

.contact-card--full {
    grid-column: 1 / -1;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
    margin-bottom: 0.15rem;
}

.contact-value {
    font-size: 0.9rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 0.3rem;
    background: rgba(5,10,32,0.9);
}

/* Formular-Seite */
.contact-form .form-row {
    margin-bottom: 0.6rem;
}
.contact-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.15rem;
    opacity: 0.8;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
}

/* =========================================================
   Button Farben für Release-Status
   ========================================================= */
.btn-success {
    background: rgba(50, 200, 120, 0.15);
    border: 1px solid rgba(50, 200, 120, 0.4);
    color: #5aff9c;
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
}

.btn-success:hover {
    background: rgba(50, 200, 120, 0.25);
    border-color: rgba(50, 200, 120, 0.6);
}

.btn-danger {
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.4);
    color: #ff6b6b;
    backdrop-filter: blur(4px);
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-danger:hover {
    background: rgba(255, 80, 80, 0.20);
    border-color: rgba(255, 80, 80, 0.6);
}

