/* ── Open Sans (lokal) ──────────────────────────────────── */
@font-face {
    font-family: 'Open Sans';
    src: url('assets/open-sans-latin-400-normal.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/open-sans-latin-400-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/open-sans-latin-600-normal.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('assets/open-sans-latin-700-normal.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Tokens ─────────────────────────────────────────────── */
:root {
    --color-black: #060606;
    --color-bg: #0a0a0c;
    --color-surface: #111116;
    --color-accent: #cc00ff;
    --color-accent2: #7b2fff;
    --color-text: #e8e6ef;
    --color-muted: #888;
    --font-display: 'Open Sans', system-ui, sans-serif;
    --font-body: 'Open Sans', system-ui, sans-serif;
    --nav-height: 74px;
    font-size: 90%;
}

/* ── Reset / Base ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 20px;
}

body {
    margin: 0;
    padding: 0;
}

[data-theme="dark"],
:root {
    --pico-background-color: var(--color-bg);
    --pico-color: var(--color-text);
}

/* ── Skip link (Barrierefreiheit) ───────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-accent);
    color: #000;
    padding: .5rem 1rem;
    border-radius: 0 0 4px 4px;
    font-weight: 700;
    z-index: 9999;
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* ── Navigation ─────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: rgba(10, 10, 12, .85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(204, 0, 255, .15);
    z-index: 100;
}

.site-nav .logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--color-text);
    text-decoration: none;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

.site-nav a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s;
}

.site-nav a:hover,
.site-nav a:focus {
    color: var(--color-accent);
    outline: 2px solid transparent;
}

/* hamburger – mobile */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-text);
    margin: 5px 0;
    transition: .3s;
}

@media (max-width: 880px) {
    .nav-toggle {
        display: block;
    }

    .site-nav ul {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 12, .97);
        border-bottom: 1px solid rgba(204, 0, 255, .2);
        padding: 1rem 0;
    }

    .site-nav ul.open {
        display: flex;
    }

    .site-nav ul li {
        text-align: center;
        padding: .7rem 0;
    }
}

/* ── Hero ───────────────────────────────────────────────── */
#home {
    position: relative;
    height: 100svh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    margin: 0;
}

.hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('home-banner.jpg');
    background-size: cover;
    background-position: center 0%;
    background-repeat: no-repeat;
}
/***** Farbverlauf
.hero-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(to bottom, rgba(10, 10, 12, .4) 0%, rgba(10, 10, 12, .75) 70%, var(--color-bg) 100%);
    background-color: #1a0022;

}
.hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 60%, rgba(204, 0, 255, .22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 75% 55%, rgba(60, 0, 180, .3) 0%, transparent 65%);
}
*/
.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-inner h1 {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 10vw, 6rem);
    letter-spacing: .066em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 40px rgba(204, 0, 255, .5);
    opacity: .95;
}

.hero-inner p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin: 1rem 0 0;
}

@media (max-width: 880px) {
    .hero-img::before {
        background-position: 62% center;
    }
}

/* ── Bounce arrow ───────────────────────────────────────── */
.scroll-hint {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .4s;
    z-index: 10;
}

.scroll-hint:hover,
.scroll-hint:focus {
    color: var(--color-accent);
}

.scroll-hint svg {
    animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-hint svg {
        animation: none;
    }
}

/* ── Sections shared ────────────────────────────────────── */
.section {
    padding: 8rem 2rem;
    max-width: 1880px;
    margin: 0 auto;
    padding-left: max(2rem, 100px);
    padding-right: max(2rem, 100px);
}

.section-full {
    padding: 6rem 2rem 8rem 2rem;
    max-width: 1880px;
    margin: 0 auto;
    padding-left: max(2rem, 100px);
    padding-right: max(2rem, 100px);
    background: var(--color-surface);
}

.section-full>.section {
    padding-top: 0;
    padding-bottom: 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.two-col-mar {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a22;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.img-placeholder::after {
    content: attr(data-label);
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, 0.908);
    letter-spacing: .08em;
}

.img-placeholder-about {
    width: 100%;
    height: 600px;
    background: #1a1a22;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.img-placeholder-live {
    width: 100%;
    height: 360px;
    background: #1a1a22;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.img-about {
    background: url('IrisNebula_c_TheresaDietel_1200.jpg') center / cover no-repeat;
    position: relative;
    background-position: 42% center;
    margin-bottom: 2rem;
}

.img-music-a {
    background: url('irresistible1.jpg') center / cover no-repeat;
    position: relative;
    background-position: center top;
}

.img-music-b {
    background: url('fafo1.jpg') center / cover no-repeat;
    position: relative;
    background-position: center top;
}

.img-live {
    background: url('irisnebula_live.jpg') center / cover no-repeat;
    position: relative;
    background-position: center top;
}

section[id] {
    scroll-margin-top: var(--nav-height);
}

/* ── About ──────────────────────────────────────────────── */
#about {
    background: var(--color-black);
    margin: 0;
}

.lead {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.8vw, 1.55rem);
    line-height: 1.25;
    color: var(--color-text);
}

/* ── Music ──────────────────────────────────────────────── */
#music {
    background: var(--color-surface);
    margin: 0;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(204, 0, 255, .25);
}

.media-card {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.media-card-text {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 1;
}

.media-card-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .9);
}

.media-card-sub {
    display: block;
    font-size: .85rem;
    letter-spacing: .08em;
    color: var(--color-text); 
    margin-top: .25rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    opacity: .95;
}
/*
.media-card:hover .media-card-title {
    color: var(--color-accent);
}
*/
.media-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: transform .2s, opacity .2s;
    opacity: .85;
}

.media-card:hover .media-card-play {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* ── Live ───────────────────────────────────────────────── */

#live a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color .2s;
    line-height: 1;
}

#live h3 {
    font-size: 1.5rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-top: 4rem;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.shows-table {
    width: 100%;
    border-collapse: collapse;
}

.shows-table caption {
    text-align: left;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: .75rem;
    caption-side: top;
}

.shows-table td {
    padding: .5rem 0;
    font-size: 1rem;
    vertical-align: top;
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.8vw, 1.55rem);
    line-height: 1.25;
    color: var(--color-text);
    background-color: var(--color-bg);
    border-bottom: none;
}

.shows-table .date {
    white-space: nowrap;
    padding-right: 2rem;
    font-variant-numeric: tabular-nums;
    width: 1%;
}

.coming {
    margin-bottom: 6rem;
}

details summary {
    cursor: pointer;
    font-size: .95rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    list-style: none;
    display: block;
}

details summary::after {
    display: none !important;
}

details summary::-webkit-details-marker {
    display: none !important;
}

details summary::before {
    content: '+ ';
}

details[open] summary::before {
    content: '− ';
}

/* ── Contact ────────────────────────────────────────────── */
#contact {
    background: var(--color-surface);
    margin: 0;
}

.contact-links {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: .75rem 2rem;
    margin: 2.5rem 0 3rem;
}

.contact-item {
    display: contents;
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.8vw, 1.55rem);
    line-height: 1.25;
    color: var(--color-text);
}

.contact-item .label {
    font-size: var(--font-body);
    color: var(--color-accent);
    font-weight: bold;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color .2s;
}

.contact-item a:hover,
.contact-item a:focus {
    color: var(--color-accent);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    font-size: .9rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

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

.site-footer a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color .2s;
    text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--color-text);
}

/* ── Focus visible (Barrierefreiheit) ───────────────────── */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 1600px) {
    .img-placeholder-about {
        aspect-ratio: 16/9;
        height: 100%;
    }

    .img-placeholder-live {
        aspect-ratio: 3/2;
        height: 100%;
    }
}

@media (max-width: 1280px) {
    .two-col,
    .two-col-mar {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3rem 2rem 4rem 2rem !important;
        margin: 0 auto;
    }

    .section-full {
        padding: 1.5rem 1rem 4rem 1rem !important;
        margin: 0 auto;
    }

    .img-placeholder-about {
        aspect-ratio: 16/9;
        height: 100%;
    }

    .img-placeholder-live {
        aspect-ratio: 16/9;
        height: 100%;
    }

    #music,
    #contact {
        padding: 2rem 1rem !important;
    }

    .media-card-title {
        font-size: 1.5rem;
    }

    #live h3 {
        font-size: 1.25rem;
    }
}
