:root {
    --bg: #020617;
    --bg-alt: #020617;
    --bg-elevated: #0b1220;
    --accent: #eab308;
    --accent-soft: rgba(234, 179, 8, 0.12);
    --text: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: rgba(148, 163, 184, 0.3);
    --card-radius: 18px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.8);
    --transition-fast: 180ms ease-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0f172a 0, #020617 55%, #000 100%);
    color: var(--text);
    line-height: 1.6;
}

/* Wenn ein Modal offen ist, Seite im Hintergrund nicht scrollen */
body.modal-open {
    overflow: hidden;
}

/* Layout */

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95));
}

.section-intro {
    max-width: 44rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Header & Navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.65));
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #facc15, #a16207 60%, #1f2937 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.45);
}

.logo-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Nav links */

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 0.15rem;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, #facc15, #f97316);
    transition: width var(--transition-fast);
}

.main-nav a:hover {
    color: var(--text);
}

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

/* Mobile nav toggle */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: var(--text);
    border-radius: 999px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Hero */

/* Hero */

.hero {
    position: relative;
    min-height: clamp(420px, 80vh, 620px);
    display: flex;
    align-items: center;
    color: #f9fafb;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 10% 0, rgba(148, 163, 184, 0.16), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(234, 179, 8, 0.28), transparent 55%),
        radial-gradient(circle at 50% 110%, rgba(56, 189, 248, 0.18), transparent 60%),
        linear-gradient(to bottom, #020617, #020617);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 10%, rgba(250, 204, 21, 0.08), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98)),
        radial-gradient(circle, rgba(15, 23, 42, 0.4), transparent 60%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;   /* breiter, damit Bild + Text nebeneinander passen */
    padding: 4rem 0;
    margin: 0 auto;
}

/* Layout im Hero: Bild links, Text rechts */
.hero-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Bild im Hero */
.hero-image img {
    display: block;
    max-width: 260px;    /* Desktop-Breite des Fotos */
    width: 100%;
    height: auto;
    border-radius: 1.4rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

/* Text-Spalte */
.hero-text {
    flex: 1;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #e5e7eb;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

/* Mobile: Bild oben, Text darunter, zentriert */
@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast),
                border-color var(--transition-fast), transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.btn.primary {
    background: linear-gradient(to right, #facc15, #f97316);
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 14px 40px rgba(250, 204, 21, 0.45);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 50px rgba(250, 204, 21, 0.6);
}

.btn.ghost {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(148, 163, 184, 0.5);
    color: var(--text);
}

.btn.ghost:hover {
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(148, 163, 184, 0.9);
}

/* Typography */

h2 {
    font-size: 1.7rem;
    margin: 0 0 1rem;
}

h3 {
    font-size: 1.2rem;
    margin: 0 0 0.75rem;
}

/* Cards & Grids */

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 40%),
                radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 1));
    border-radius: var(--card-radius);
    border: 1px solid var(--border-subtle);
    padding: 1.4rem 1.4rem 1.3rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(234, 179, 8, 0.12), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(234, 179, 8, 0.5);
    background: rgba(23, 23, 23, 0.8);
    padding: 0.18rem 0.6rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-text {
    font-size: 0.9rem;
    margin: 0 0 0.3rem;
}

.card-text.small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Chips */

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
}

.chip {
    border-radius: 999px;
    background: var(--accent-soft);
    color: #facc15;
    border: 1px solid rgba(234, 179, 8, 0.4);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* About & Media */

.section-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about-card ul,
.media-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 0.75rem;
}

.about-card li,
.media-list li {
    font-size: 0.9rem;
}

.about-photo,
.media-photo {
    margin-top: 1rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

.about-photo img,
.media-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Presse-Material: Grid */

.press-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: flex-start;
}

.press-downloads h2,
.press-gallery h2 {
    margin-top: 0;
}

/* Download-Liste */

.download-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.download-list li + li {
    margin-top: 0.5rem;
}

.download-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--accent, #eab308);
}

.download-list a::before {
    content: "↓";
    font-size: 0.8rem;
    opacity: 0.9;
}

.download-list a:hover {
    text-decoration: underline;
}

/* Fotosammlung rechts */

.press-gallery-main {
    margin-top: 1rem;
    /* Box kleiner machen */
    max-width: 260px;          /* <= Breite der Box */
    border-radius: 1.2rem;
    overflow: hidden;
    background: #020617;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;        /* mittig in der Karte */
}

.press-gallery-main img {
    display: block;
    width: 100%;
    max-height: 180px;         /* <= Höhe stärker begrenzt */
    object-fit: cover;         /* schneidet ggf. etwas ab, bleibt aber hübsch */
}

/* Kleine Zusatztexte */

.card-text.xsmall {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Galerie-Modal / Slider */

.modal-gallery {
    max-width: 900px;
}

.modal-body--gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.gallery-image-wrapper {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 1rem;
    overflow: hidden;
    background: #020617;
}

.gallery-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.gallery-nav {
    border: none;
    padding: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.gallery-nav:hover {
    transform: translateY(-1px);
    background: rgba(30, 64, 175, 0.9);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

/* Mobile: Spalten untereinander */

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
    }

    .modal-body--gallery {
        gap: 0.4rem;
    }

    .gallery-nav {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1.5rem;
    }
}


/* Kontakt */

.contact-line a {
    color: #fbbf24;
    text-decoration: none;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(31, 41, 55, 1);
    background: #020617;
    padding: 1.4rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text);
}

/* Responsive */

@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        right: 1.5rem;
        top: 4rem;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 1rem;
        padding: 0.75rem 1rem;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-content {
        padding: 3rem 0;
    }

    .footer-layout {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 768px) {
    .section-layout {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
        align-items: flex-start;
    }

    .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .recordings-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Kontakt – Karten nebeneinander */
.contact-cards {
    display: flex;
    flex-wrap: wrap;     /* erlaubt Umbruch bei wenig Platz */
    gap: 1.5rem;         /* Abstand zwischen den Karten */
    margin-top: 1.5rem;
}

.contact-cards .card {
    flex: 1 1 260px;     /* beide ungefähr gleich breit, mindestens 260px */
}

/* Auf kleinen Bildschirmen lieber untereinander */
@media (max-width: 600px) {
    .contact-cards {
        flex-direction: column;
    }
}

/* === Presse-Modal === */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(10px);
    display: none;              /* per JS auf "flex" gesetzt */
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1.5rem;
}

.modal-backdrop.open {
    display: flex;
}

.modal {
    max-width: 780px;
    width: 100%;
    background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 40%),
                radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 1));
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
    padding: 1.5rem 1.5rem 1.25rem;
    position: relative;
    color: var(--text);
}

.modal h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.modal-body {
    max-height: 65vh;
    overflow-y: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    padding-right: 0.5rem;
}

.modal-body p {
    margin-top: 0;
    margin-bottom: 0.9rem;
}

/* Schließen-Button oben rechts */

.modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.75rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.15rem 0.3rem;
    border-radius: 999px;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(15, 23, 42, 0.7);
    color: var(--text);
}

/* Mobile: Nav-Button besser sichtbar machen */
@media (max-width: 768px) {
    .nav-toggle {
        display: inline-flex;                     /* sichtbar auf Mobil */
        align-items: center;
        gap: 0.4rem;                              /* Abstand zwischen Text und Icon */
        padding: 0.35rem 0.9rem;
        border-radius: 999px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        background: rgba(15, 23, 42, 0.95);
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
    }

    /* Text "MENÜ" vor den drei Strichen einblenden */
    .nav-toggle::before {
        content: "MENÜ";
        font-size: 0.8rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--text);
    }

    .nav-toggle span {
        width: 16px;
        height: 2px;
        margin: 2px 0;
        background: var(--text);
        border-radius: 999px;
        transition: transform var(--transition-fast), opacity var(--transition-fast);
    }
}

/* Kontakt-Bereich: nicht in zwei Spalten aufteilen, sondern volle Breite nutzen */
#contact .section-layout {
    grid-template-columns: minmax(0, 1fr);
}

/* Mobile: Kontakt-Karten kompakter machen */
@media (max-width: 600px) {
    .contact-cards {
        flex-direction: column;
    }

    .contact-cards .card {
        flex: 0 0 auto;          /* nicht mehr in die Höhe strecken */
        padding: 1rem 1.2rem;    /* weniger Innenabstand */
    }
}

/* YouTube-Links im Medien-Bereich */
.media-list-youtube li {
    margin-bottom: 0.25rem;
}

.media-list-youtube a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;

    color: #facc15;                /* dein gelber Akzent */
    text-decoration: none;
    font-weight: 500;
    transition:
        color 0.18s ease-out,
        text-shadow 0.18s ease-out,
        transform 0.18s ease-out;
}

/* kleines "Play"-Icon davor */
.media-list-youtube a::before {
    content: "▶";
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Hover-Effekt */
.media-list-youtube a:hover {
    color: #fde68a;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.7);
    transform: translateX(2px);
}

/* CD-Karten */
.recording-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* CD-Cover kleiner machen */
.recording-cover {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.recording-cover img {
    width: auto;          /* nicht mehr volle Kartenbreite */
    max-width: 220px;     /* maximale Breite auf Desktop */
    max-height: 220px;
    object-fit: contain;
    border-radius: 0.9rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Auf dem Handy dürfen sie etwas größer sein */
@media (max-width: 600px) {
    .recording-cover img {
        max-width: 70%;
        max-height: 200px;
    }
}


/* Kleine Buttons als Text-Link */
.link-button {
    background: none;
    border: none;
    color: var(--accent, #ffb84a);
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.link-button:hover,
.link-button:focus-visible {
    text-decoration: none;
    filter: brightness(1.15);
}

/* Modals für Tracklisten */
.modal-body--tracks {
    display: grid;
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
}

.modal-cover img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.modal-tracks h4 {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.modal-tracks p {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.modal-tracks ol {
    margin: 0 0 0.75rem 1.5rem;
    padding-left: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .modal-body--tracks {
        grid-template-columns: 1fr;
    }
    .modal-cover img {
        max-width: 260px;
        margin-inline: auto;
    }
}

/* Abstand oberhalb des Bereichs unter der Beschreibung */
.recording-footer {
    margin-top: 1rem;
}

/* CD + Jahr + "Tracks anzeigen" in einer Zeile */
.recording-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.6rem;
    margin-bottom: 0.4rem;
}

/* Chip-Reihe hier ohne extra Abstand */
.recording-meta .chip-row {
    margin: 0;
}

/* Button nach rechts schieben */
.recording-meta .link-button {
    margin-left: auto;
    white-space: nowrap;   /* kein Zeilenumbruch im Text */
}

/* Amazon/Spotify-Logos unter der Meta-Zeile */
.streaming-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.streaming-links img {
    height: 28px;      /* ggf. anpassen z.B. 24px oder 32px */
    width: auto;
    display: block;
}
