/* =========================
   GRUNDEINSTELLUNGEN
   ========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: white;

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;
}


/* =========================
   HEADER / NAVIGATION
   ========================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    transition:
        background-color 0.4s ease,
        backdrop-filter 0.4s ease,
        height 0.4s ease,
        border-color 0.4s ease;
}


/* Header verändert sich beim Scrollen */

.site-header.scrolled {

    height: 70px;

    background: rgba(5, 5, 5, 0.78);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.10);
}


/* kleines Logo links */

.header-logo img {

    width: 120px;

    display: block;

    transition: transform 0.3s ease;
}


.header-logo:hover img {
    transform: scale(1.06);
}


/* Navigation */

.main-nav {
    display: flex;

    gap: 38px;
}


.main-nav a {

    position: relative;

    color: white;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 0.25em;

    font-weight: 500;
}


/* kleine Linie beim Hover */

.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: white;

    transition: width 0.3s ease;
}


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


/* MUSIC Dropdown */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);

    min-width: 235px;
    padding: 10px 0;

    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

    z-index: 1000;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.main-nav .nav-dropdown-menu a {
    display: block;
    padding: 12px 18px;

    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 0.16em;
}

.main-nav .nav-dropdown-menu a::after {
    display: none;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus {
    background: rgba(255, 255, 255, 0.08);
}


/* =========================
   HERO
   ========================= */

.hero {

    position: relative;

    width: 100%;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #030303;
}


/*
leichte Beleuchtung im Hintergrund.
Kein Bild nötig.
*/

.hero-background {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle at 50% 43%,
            rgba(255,255,255,0.075) 0%,
            rgba(255,255,255,0.025) 26%,
            rgba(0,0,0,0) 58%
        ),

        linear-gradient(
            180deg,
            #090909 0%,
            #020202 100%
        );
}


/* leichtes atmosphärisches Overlay */

.hero-background::after {

    content: "";

    position: absolute;

    width: 70vw;
    height: 70vw;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.04),
        transparent 65%
    );

    filter: blur(30px);
}


/* eigentlicher Hero-Inhalt */

.hero-content {

    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    padding: 0 30px;

    text-align: center;
}


/* großes SACRADA-Logo */

.hero-logo {

    width: min(800px, 70vw);

    height: auto;

    opacity: 0;

    transform: translateY(25px) scale(0.97);

    animation: heroLogoAppear 1.6s ease forwards;

    filter:
        drop-shadow(0 0 15px rgba(255,255,255,0.08))
        drop-shadow(0 0 40px rgba(255,255,255,0.04));

    will-change: transform;
}


/* Text unter Logo */

.hero-subtitle {

    margin-top: 36px;

    font-size: 12px;

    letter-spacing: 0.55em;

    color: rgba(255,255,255,0.65);

    opacity: 0;

    animation: heroTextAppear 1.3s ease 0.7s forwards;
}


/* =========================
   HERO ANIMATIONEN
   ========================= */

@keyframes heroLogoAppear {

    from {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@keyframes heroTextAppear {

    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================
   SCROLL INDICATOR
   ========================= */

.scroll-indicator {

    position: absolute;

    z-index: 3;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: rgba(255,255,255,0.65);
}


.scroll-indicator span {

    font-size: 9px;

    letter-spacing: 0.4em;
}


.scroll-line {

    width: 1px;
    height: 40px;

    background: rgba(255,255,255,0.6);

    animation: scrollLine 1.8s ease-in-out infinite;
}


@keyframes scrollLine {

    0% {
        transform: scaleY(0.35);
        transform-origin: top;
        opacity: 0.3;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }

    100% {
        transform: scaleY(0.35);
        transform-origin: bottom;
        opacity: 0.3;
    }
}


/* =========================
   CONTENT SECTIONS
   ========================= */

.content-section {

    min-height: 80vh;

    padding: 140px 10vw;

    border-top: 1px solid rgba(255,255,255,0.06);

    background: #050505;
}


.content-section h2 {

    font-size: clamp(45px, 8vw, 110px);

    letter-spacing: 0.08em;

    margin-bottom: 50px;
}


/* =========================
   SCROLL REVEAL
   ========================= */

.reveal {

    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 1s ease,
        transform 1s ease;
}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

    .site-header {
        height: 70px;

        padding: 0 22px;
    }

    .header-logo img {
        width: 95px;
    }

    /*
    Vorläufig Navigation ausblenden.
    Später bauen wir hier das Burger-Menü.
    */

    .main-nav {
        display: none;
    }

    .hero-logo {
        width: 86vw;
    }

    .hero-subtitle {

        font-size: 9px;

        letter-spacing: 0.35em;

        margin-top: 25px;
    }

    .content-section {
        padding: 100px 25px;
    }

}

* =========================
   ABOUT
   ========================= */

.about-section {

    position: relative;

    min-height: 100vh;

    padding: 150px 10vw;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #050505;

    border-top: 1px solid rgba(255,255,255,0.06);
}


.about-inner {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1300px;

    margin: 0 auto;
}


/* Überschrift */

.about-heading {

    display: flex;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 80px;
}


.about-heading h2 {

    font-size: clamp(70px, 12vw, 170px);

    line-height: 0.8;

    letter-spacing: 0.02em;

    font-weight: 800;
}


.section-number {

    margin-top: 8px;

    font-size: 11px;

    letter-spacing: 0.3em;

    color: rgba(255,255,255,0.4);
}


/* Text */

.about-content {

    max-width: 720px;

    margin-left: auto;
}


.about-lead {

    margin-bottom: 25px;

    font-size: 22px;

    letter-spacing: 0.35em;

    font-weight: 600;
}


.about-text {

    font-size: clamp(18px, 2vw, 24px);

    line-height: 1.6;

    color: rgba(255,255,255,0.70);
}


/* =========================
   DEKORATIVES ELEMENT
   ========================= */

.about-decoration {

    position: absolute;

    z-index: 0;

    right: -5vw;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(-90deg);

    transform-origin: center;

    font-size: clamp(100px, 18vw, 280px);

    font-weight: 900;

    letter-spacing: 0.05em;

    white-space: nowrap;

    color: rgba(255,255,255,0.025);

    pointer-events: none;

    user-select: none;

    will-change: transform;
}


/* =========================
   MOBILE ABOUT
   ========================= */

@media (max-width: 800px) {

    .about-section {

        padding: 110px 25px;

        min-height: auto;
    }

    .about-heading {

        margin-bottom: 60px;

        gap: 12px;
    }

    .about-heading h2 {

        font-size: 65px;
    }

    .about-content {

        margin-left: 0;
    }

    .about-decoration {

        font-size: 110px;

        right: -180px;
    }

}

/* =========================
   ABOUT BAND
   ========================= */

.about-band {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 65%;

    overflow: hidden;

    pointer-events: none;

    z-index: 1;
}


.band-group {

    position: absolute;

    bottom: 0;

    width: min(45vw, 650px);

    height: auto;

    will-change: transform;

    transition: none;
}


/* linke zwei Personen */

.band-group-left {

    left: 50%;

    transform:
        translateX(-160%)
        translateY(0);
}


/* rechte zwei Personen */

.band-group-right {

    right: 50%;

    transform:
        translateX(160%)
        translateY(0);
}

/* =========================
   LIVE
   ========================= */

.live-section {

    position: relative;

    padding: 150px 10vw 180px;

    background: #080808;

    border-top: 1px solid rgba(255,255,255,0.06);
}


.live-inner {

    width: 100%;

    max-width: 1300px;

    margin: 0 auto;
}


/* =========================
   LIVE HEADING
   ========================= */

.live-heading {

    display: flex;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 90px;
}


.live-heading h2 {

    font-size: clamp(70px, 12vw, 170px);

    line-height: 0.8;

    letter-spacing: 0.02em;

    font-weight: 800;
}


/* =========================
   SHOW LIST
   ========================= */

.show-list {

    width: 100%;

    border-top: 1px solid rgba(255,255,255,0.20);
}


/* einzelne Konzertzeile */

.show-row {

    display: grid;

    grid-template-columns: 220px 1fr 180px;

    align-items: center;

    min-height: 130px;

    border-bottom: 1px solid rgba(255,255,255,0.20);

    transition:
        background-color 0.3s ease,
        padding 0.3s ease;
}


/* dezenter Hover */

.show-row:hover {

    background: rgba(255,255,255,0.035);

    padding-left: 15px;
    padding-right: 15px;
}


/* =========================
   DATE
   ========================= */

.show-date {

    display: flex;

    align-items: baseline;

    gap: 14px;
}


.show-day {

    font-size: 48px;

    line-height: 1;

    font-weight: 700;
}


.show-month {

    font-size: 11px;

    letter-spacing: 0.20em;

    color: rgba(255,255,255,0.55);
}


/* =========================
   LOCATION
   ========================= */

.show-location {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.show-venue {

    font-size: 22px;

    font-weight: 600;

    letter-spacing: 0.04em;
}


.show-city {

    font-size: 12px;

    letter-spacing: 0.18em;

    color: rgba(255,255,255,0.45);

    text-transform: uppercase;
}


/* =========================
   TICKET
   ========================= */

.show-ticket {

    display: flex;

    justify-content: flex-end;
}


.ticket-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 135px;

    padding: 15px 20px;

    border: 1px solid rgba(255,255,255,0.65);

    color: white;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.25em;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.ticket-button:hover {

    background: white;

    color: black;

    transform: translateY(-2px);
}


/* =========================
   MOBILE LIVE
   ========================= */

@media (max-width: 800px) {

    .live-section {

        padding: 110px 25px 130px;
    }


    .live-heading {

        margin-bottom: 60px;

        gap: 12px;
    }


    .live-heading h2 {

        font-size: 65px;
    }


    .show-row {

        grid-template-columns: 90px 1fr;

        min-height: 120px;

        padding: 20px 0;

        gap: 10px 15px;
    }


    .show-row:hover {

        padding-left: 0;
        padding-right: 0;
    }


    .show-date {

        flex-direction: column;

        gap: 4px;
    }


    .show-day {

        font-size: 36px;
    }


    .show-location {

        align-self: center;
    }


    .show-venue {

        font-size: 18px;
    }


    .show-ticket {

        grid-column: 2;

        justify-content: flex-start;

        margin-top: 8px;
    }


    .ticket-button {

        min-width: 120px;

        padding: 12px 16px;
    }

}

/* =========================
   MUSIC
   ========================= */

.music-section {

    position: relative;

    padding: 150px 10vw 180px;

    background: #050505;

    border-top: 1px solid rgba(255,255,255,0.06);

    overflow: hidden;
}


.music-inner {

    width: 100%;

    max-width: 1300px;

    margin: 0 auto;
}


/* =========================
   MUSIC HEADING
   ========================= */

.music-heading {

    display: flex;

    align-items: flex-start;

    gap: 25px;

    margin-bottom: 90px;
}


.music-heading h2 {

    font-size: clamp(70px, 12vw, 170px);

    line-height: 0.8;

    letter-spacing: 0.02em;

    font-weight: 800;
}


/* =========================
   SPOTIFY
   ========================= */

.spotify-area {

    position: relative;

    max-width: 900px;

    margin: 0 auto 150px;
}


.spotify-player {

    display: block;

    width: 100%;

    border: none;

    border-radius: 12px;

    box-shadow:
        0 30px 70px rgba(0,0,0,0.45);
}


.spotify-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 30px;

    padding: 16px 25px;

    border: 1px solid rgba(255,255,255,0.65);

    color: white;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.25em;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.spotify-button:hover {

    background: white;

    color: black;

    transform: translateY(-2px);
}


/* =========================
   DISCOGRAPHY
   ========================= */

.discography {

    width: 100%;
}


.discography-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;
}


.discography-header h3 {

    font-size: clamp(28px, 4vw, 52px);

    letter-spacing: 0.08em;
}


.discography-controls {

    display: flex;

    gap: 10px;
}


.discography-arrow {

    width: 48px;

    height: 48px;

    border: 1px solid rgba(255,255,255,0.25);

    background: transparent;

    color: white;

    font-size: 20px;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.discography-arrow:hover {

    background: white;

    color: black;

    border-color: white;
}


/* =========================
   CAROUSEL
   ========================= */

.discography-window {

    width: 100%;

    overflow: hidden;
}


.discography-track {

    display: flex;

    gap: 30px;

    transition: transform 0.5s ease;
}


.release-card {

    flex:
        0 0
        calc(
            (100% - 90px) / 4
        );

    min-width: 0;
}


.release-card a {

    display: block;

    overflow: hidden;
}


.release-card img {

    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}


.release-card:hover img {

    transform: scale(1.04);

    opacity: 0.80;
}


.release-type {

    margin-top: 20px;

    margin-bottom: 7px;

    font-size: 9px;

    letter-spacing: 0.30em;

    color: rgba(255,255,255,0.38);
}


.release-card h4 {

    margin-bottom: 7px;

    font-size: 17px;

    letter-spacing: 0.08em;
}


.release-card span {

    font-size: 11px;

    letter-spacing: 0.15em;

    color: rgba(255,255,255,0.45);
}


/* =========================
   MOBILE MUSIC
   ========================= */

@media (max-width: 800px) {

    .music-section {

        padding: 110px 25px 130px;
    }


    .music-heading {

        margin-bottom: 60px;

        gap: 12px;
    }


    .music-heading h2 {

        font-size: 65px;
    }


    .spotify-area {

        margin-bottom: 100px;
    }


    .discography-header {

        margin-bottom: 30px;
    }


    .discography-header h3 {

        font-size: 26px;
    }


    .release-card {

        flex: 0 0 75%;
    }


    .discography-track {

        gap: 20px;
    }

}

/* =========================
   ALBUM DETAIL PAGES
   ========================= */

.album-page {
    min-height: 100vh;
    padding: 150px 5vw 90px;
    background: #050505;
    color: #fff;
}

.album-detail {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: clamp(55px, 8vw, 120px);
    align-items: start;
}

.album-sidebar {
    min-width: 0;
}

.album-detail-cover {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.album-meta {
    padding-top: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,0.16);
}

.album-meta h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.album-date {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.24em;
    color: rgba(255,255,255,0.48);
}

.album-tracklist {
    padding-top: 28px;
}

.album-small-heading {
    display: block;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.48);
}

.album-tracklist ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.album-tracklist li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    line-height: 1.45;
    letter-spacing: 0.08em;
}

.album-tracklist li span {
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    padding-top: 2px;
}

.album-story {
    min-width: 0;
    padding-top: 4px;
}

.album-story::before {
    content: "INTERVIEW";
    display: block;
    margin-bottom: 36px;
    font-size: 10px;
    letter-spacing: 0.30em;
    color: rgba(255,255,255,0.45);
}

.interview-block {
    padding: 0 0 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.interview-block:last-child {
    margin-bottom: 0;
}

.interview-block h2 {
    margin: 0 0 16px;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.25;
    letter-spacing: 0.02em;
}

.interview-block p {
    margin: 0;
    max-width: 720px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.70);

    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    -webkit-hyphens: auto;
}

@media (max-width: 800px) {
    .interview-block p {
        text-align: left;
        hyphens: none;
        -webkit-hyphens: none;
    }

    .album-page {
        padding: 120px 24px 70px;
    }

    .album-detail {
        display: block;
    }

    .album-sidebar {
        width: 100%;
        max-width: 560px;
        margin: 0 auto 70px;
    }

    .album-meta {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .album-story {
        padding-top: 0;
    }

    .album-story::before {
        margin-bottom: 28px;
    }

    .interview-block {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }
}

/* =========================
   VIDEOS / YOUTUBE PLAYER
   ========================= */

.videos-section {
    padding: 140px 10vw 160px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #050505;
}

.videos-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.videos-heading {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 56px;
}

.videos-heading h2 {
    margin: 0;
    font-size: clamp(45px, 8vw, 110px);
    line-height: 0.9;
    letter-spacing: 0.08em;
}

.video-player-shell {
    border-top: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.14);
    padding: 30px 0 26px;
}

.video-player-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-player-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: none;
}

.video-player-frame.is-playing iframe {
    display: block;
}

.video-player-frame.is-playing .video-player-placeholder {
    display: none;
}

.video-player-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,0.07), transparent 34%),
        #020202;
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.24em;
    font-size: 9px;
}

.video-player-placeholder strong {
    color: white;
    font-size: clamp(24px, 4vw, 48px);
    letter-spacing: 0.16em;
}

.video-play-symbol {
    display: grid;
    place-items: center;
    width: 68px;
    height: 48px;
    margin-bottom: 8px;
    padding-left: 4px;
    background: #fff;
    color: #050505;
    font-size: 17px;
}

.video-player-meta {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: baseline;
    gap: 20px;
    padding-top: 20px;
}

.video-player-kicker {
    font-size: 9px;
    letter-spacing: 0.26em;
    color: rgba(255,255,255,0.38);
}

.video-player-meta h3 {
    margin: 0;
    font-size: clamp(18px, 2.2vw, 28px);
    letter-spacing: 0.06em;
}

.video-playlist {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.video-card {
    appearance: none;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: white;
    text-align: left;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.3s ease;
}

.video-thumb-play {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 34px;
    padding-left: 2px;
    background: rgba(255,255,255,0.92);
    color: #050505;
    font-size: 12px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img {
    transform: scale(1.035);
    opacity: 0.78;
}

.video-card:hover .video-thumb-play,
.video-card:focus-visible .video-thumb-play {
    transform: scale(1.08);
    background: white;
}

.video-card-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 14px;
}

.video-card-copy strong {
    font-size: 13px;
    letter-spacing: 0.08em;
}

.video-card-copy small {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.38);
}

.video-card.is-active .video-card-copy strong {
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media (max-width: 800px) {
    .videos-section {
        padding: 100px 25px 110px;
    }

    .videos-heading {
        margin-bottom: 36px;
    }

    .video-player-shell {
        padding-top: 20px;
    }

    .video-player-meta {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-top: 15px;
    }

    .video-playlist {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 28px;
    }

    .video-card {
        display: grid;
        grid-template-columns: 42% 1fr;
        gap: 16px;
        align-items: center;
    }

    .video-card-copy {
        padding-top: 0;
    }

    .video-thumb-play {
        left: 10px;
        bottom: 10px;
        width: 38px;
        height: 27px;
        font-size: 10px;
    }
}


/* =========================
   SITE FOOTER
   ========================= */

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 24px 5%;
    margin-top: 60px;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    opacity: 0.72;
    transition: opacity 0.2s ease;
}

.site-footer a:hover {
    opacity: 1;
}

.legal-content {
    width: min(900px, 90%);
    min-height: 70vh;
    margin: 0 auto;
    padding: 100px 0 60px;
}

.legal-content h1 {
    margin: 35px 0 25px;
}

.legal-back {
    color: inherit;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    opacity: 0.72;
}

.legal-placeholder {
    opacity: 0.72;
}

@media (max-width: 600px) {
    .site-footer-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}


/* =========================
   BAND + CONTACT
   ========================= */

.band-section,
.contact-section {
    padding-top: 110px;
    padding-bottom: 110px;
}

.band-section .section-heading,
.contact-section .section-heading {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 28px;
}

.band-section .section-heading h2,
.contact-section .section-heading h2 {
    margin: 0;
}

.band-intro,
.contact-copy {
    line-height: 1.8;
    opacity: 0.82;
}

.band-intro {
    max-width: 980px;
    margin-bottom: 42px;
}

.contact-copy {
    max-width: 780px;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.member-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #111;
    cursor: pointer;
    outline: none;
}

.member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.member-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.18) 72%);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.member-card:hover .member-overlay,
.member-card:focus .member-overlay,
.member-card.is-active .member-overlay {
    opacity: 1;
    transform: translateY(0);
}

.member-card:hover img,
.member-card:focus img,
.member-card.is-active img {
    transform: scale(1.035);
    filter: brightness(0.62);
}

.member-overlay h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
}

.member-overlay p {
    margin: 3px 0;
    line-height: 1.5;
}

.member-role {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    opacity: 0.72;
}

.contact-section {
    border-top: 1px solid rgba(255,255,255,0.12);
}

.contact-copy p {
    margin: 0 0 14px;
}

.contact-mail {
    display: inline-block;
    margin-top: 18px;
    color: inherit;
    text-decoration: none;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    border-bottom: 1px solid currentColor;
    opacity: 0.72;
    cursor: default;
}

@media (max-width: 900px) {
    .band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .band-section,
    .contact-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .band-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .member-card {
        aspect-ratio: 5 / 4;
    }

    .member-overlay {
        padding: 20px;
    }
}

/* FOOTER SOCIAL ICONS */
.footer-socials{display:flex;align-items:center;justify-content:center;gap:14px;margin-left:auto;margin-right:24px}.footer-socials .social-icon{width:30px;height:30px;border:1px solid rgba(255,255,255,.45);border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#d0d0d0;text-decoration:none;font-family:Arial,sans-serif;font-size:15px;font-weight:700;line-height:1;opacity:.72;transition:opacity .2s ease,border-color .2s ease,transform .2s ease}.footer-socials .social-icon:hover{opacity:1;border-color:rgba(255,255,255,.9);transform:translateY(-2px)}.footer-socials .youtube-icon{font-size:12px;padding-left:2px}.footer-socials .spotify-icon{font-size:19px}@media(max-width:700px){.footer-socials{margin:4px 0;order:2}}


/* =========================
   SCROLL ARTWORK
   ========================= */

html {
    background: #050505;
}

body {
    position: relative;
    isolation: isolate;
    background: transparent;
}

.scroll-art {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    filter: brightness(0.40) contrast(1.06);
    will-change: transform, opacity;
    z-index: 0;
}

/*
   Soft darkening keeps text readable while still allowing the artwork
   to occupy the complete viewport background.
*/
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at center,
            rgba(5, 5, 5, 0.50) 0%,
            rgba(5, 5, 5, 0.30) 42%,
            rgba(5, 5, 5, 0.12) 100%
        );
}

.site-header {
    position: fixed;
    z-index: 3000;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

/* MUSIC dropdown must always stay above page sections/cards/background art. */
.nav-dropdown {
    position: relative;
    z-index: 3100;
}

.nav-dropdown-menu {
    z-index: 3200;
}

.video-sidebar,
.video-player-shell,
.video-player-frame {
    background: #050505;
}

/* =========================
   VIDEO PLAYLIST SIDEBAR
   ========================= */

.video-layout {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.video-sidebar {
    border-top: 1px solid rgba(255,255,255,0.14);
    border-bottom: 1px solid rgba(255,255,255,0.14);
    min-height: 100%;
    max-height: min(70vh, 650px);
    overflow: hidden;
    background: rgba(5,5,5,0.72);
}

.video-sidebar-heading {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.video-sidebar-heading span {
    font-size: 10px;
    letter-spacing: 0.24em;
}

.video-sidebar-heading small {
    font-size: 8px;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.38);
}

.video-sidebar-list {
    max-height: calc(min(70vh, 650px) - 49px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.video-sidebar-loading {
    padding: 22px 14px;
    font-size: 9px;
    line-height: 1.6;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.42);
}

.playlist-item {
    appearance: none;
    width: 100%;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: transparent;
    color: white;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.playlist-item:hover,
.playlist-item:focus-visible,
.playlist-item.is-active {
    background: rgba(255,255,255,0.065);
}

.playlist-item.is-active {
    box-shadow: inset 2px 0 0 rgba(255,255,255,0.76);
}

.playlist-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.playlist-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.playlist-number {
    position: absolute;
    left: 6px;
    bottom: 5px;
    padding: 3px 5px;
    background: rgba(0,0,0,0.74);
    font-size: 8px;
    letter-spacing: 0.12em;
}

.playlist-item-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.playlist-item-copy strong {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.07em;
}

.playlist-item-copy small {
    font-size: 8px;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.38);
}

.video-layout .video-player-shell {
    padding-top: 0;
}

.video-layout .video-player-frame > div,
.video-layout .video-player-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {

    .video-layout {
        grid-template-columns: 1fr;
    }

    .video-sidebar {
        max-height: 230px;
        order: 2;
    }

    .video-sidebar-list {
        max-height: 180px;
    }

    .video-player-shell {
        order: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
}


/* =========================
   LIVE: PAST SHOWS
   ========================= */

.show-status {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.58);
    white-space: nowrap;
}

.show-row-example {
    opacity: 0.88;
}

.past-shows {
    margin-top: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.025);
}

.past-shows-toggle {
    width: 100%;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-align: left;
}

.past-shows-toggle:hover,
.past-shows-toggle:focus-visible {
    background: rgba(255,255,255,0.025);
}

.past-shows-icon {
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.past-shows-toggle[aria-expanded="true"] .past-shows-icon {
    transform: rotate(45deg);
}

.past-shows-list {
    padding: 0 18px 10px;
}

.past-show-list {
    margin: 0;
}

.past-show-row {
    opacity: 0.66;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

.past-show-row .show-day {
    font-size: 1.35rem;
}

.past-show-row .show-month,
.past-show-row .show-venue,
.past-show-row .show-city,
.past-show-row .show-status {
    font-size: 0.68rem;
}

.past-show-row .show-location {
    gap: 2px;
}

/* =========================
   BAND: MOBILE CAROUSEL
   ========================= */

.band-carousel-shell {
    position: relative;
}

.band-carousel-btn,
.band-carousel-dots {
    display: none;
}




/* Desktop safeguard: carousel wrapper must not alter the four-column layout. */
.band-carousel-shell {
    position: relative;
}

.band-carousel-shell .band-grid {
    width: 100%;
}

.band-carousel-btn,
.band-carousel-dots {
    display: none;
}


@media (max-width: 700px) {
    .band-carousel-shell {
        position: relative;
        padding: 0 34px 30px;
    }

    .band-carousel-shell #band-carousel-track {
        display: flex !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .band-carousel-shell #band-carousel-track::-webkit-scrollbar {
        display: none;
    }

    .band-carousel-shell #band-carousel-track > .member-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        scroll-snap-align: center;
    }

    .band-carousel-btn {
        display: grid;
        position: absolute;
        top: 46%;
        transform: translateY(-50%);
        width: 30px;
        height: 42px;
        place-items: center;
        border: 1px solid rgba(255,255,255,0.18);
        background: rgba(5,5,5,0.76);
        color: #fff;
        font-size: 1.6rem;
        line-height: 1;
        cursor: pointer;
        z-index: 3;
    }

    .band-carousel-prev {
        left: 0;
    }

    .band-carousel-next {
        right: 0;
    }

    .band-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
    }

    .band-carousel-dot {
        width: 6px;
        height: 6px;
        border: 0;
        border-radius: 50%;
        padding: 0;
        background: rgba(255,255,255,0.28);
    }

    .band-carousel-dot.is-active {
        background: rgba(255,255,255,0.86);
    }

    .past-shows-list {
        padding-left: 12px;
        padding-right: 12px;
    }

    .past-show-row {
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .show-status {
        white-space: normal;
        text-align: right;
    }
}


/* =========================
   PRESS KIT
   ========================= */

.presskit-button {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 22px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    transition: background 0.2s ease, color 0.2s ease;
}

.presskit-button:hover,
.presskit-button:focus-visible {
    background: #fff;
    color: #000;
}




/* =========================
   EXTERNAL MEDIA CONSENT
   ========================= */

.media-consent {
    width: 100%;
    min-height: 300px;
    padding: 42px;
    border: 1px solid rgba(255,255,255,0.12);
    background: #050505;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
}

.media-consent-youtube {
    min-height: 420px;
}

.media-consent[hidden],
#spotify-player-target[hidden],
#youtube-content[hidden] {
    display: none !important;
}

.media-consent-label {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    opacity: 0.55;
}

.media-consent h3 {
    margin: 0;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    letter-spacing: 0.05em;
}

.media-consent p {
    max-width: 680px;
    margin: 0;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.media-consent-button {
    margin-top: 6px;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.55);
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.media-consent-button:hover,
.media-consent-button:focus-visible {
    background: #fff;
    color: #000;
}

.media-consent-privacy {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.58);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-media-settings {
    border: 0;
    padding: 0;
    background: none;
    color: inherit;
    font: inherit;
    font-size: inherit;
    cursor: pointer;
    opacity: 0.72;
}

.footer-media-settings:hover,
.footer-media-settings:focus-visible {
    opacity: 1;
}

@media (max-width: 700px) {
    .media-consent {
        min-height: 260px;
        padding: 28px 22px;
    }

    .media-consent-youtube {
        min-height: 320px;
    }
}


/* =========================
   EXTERNAL MEDIA PREVIEWS
   Local-only previews: no third-party request before consent.
   ========================= */

.media-consent {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0;
}

.media-preview {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
}

.media-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.56);
    backdrop-filter: blur(2px);
}

.media-consent-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: inherit;
    padding: 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(
        90deg,
        rgba(5,5,5,0.86) 0%,
        rgba(5,5,5,0.72) 52%,
        rgba(5,5,5,0.48) 100%
    );
}

.media-preview-spotify {
    display: grid;
    grid-template-columns: minmax(170px, 28%) 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px 36px;
    background: linear-gradient(135deg, #232323, #090909 70%);
}

.media-preview-spotify > img {
    width: min(220px, 100%);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 7px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.55);
    opacity: 0.88;
}

.spotify-preview-copy {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #fff;
    opacity: 0.72;
}

.spotify-preview-kicker,
.spotify-preview-meta {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    opacity: 0.65;
}

.spotify-preview-copy strong {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.spotify-preview-controls {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    font-size: 0.95rem;
}

.spotify-preview-play {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #050505;
    padding-left: 2px;
}

.media-preview-youtube {
    background: #050505;
}

.media-preview-youtube > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) brightness(0.66);
    transform: scale(1.04);
}

.youtube-preview-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    width: 74px;
    height: 52px;
    border-radius: 14px;
    background: rgba(20,20,20,0.9);
    color: rgba(255,255,255,0.9);
    font-size: 1.35rem;
    padding-left: 4px;
}

.youtube-preview-bar {
    position: absolute;
    left: 4%;
    right: 4%;
    bottom: 24px;
    height: 4px;
    z-index: 1;
    background: rgba(255,255,255,0.24);
}

.youtube-preview-bar::before {
    content: "";
    display: block;
    width: 36%;
    height: 100%;
    background: rgba(255,255,255,0.52);
}

@media (max-width: 700px) {
    .media-consent-overlay {
        padding: 28px 22px;
    }

    .media-preview-spotify {
        grid-template-columns: 110px 1fr;
        gap: 18px;
        padding: 20px;
    }

    .spotify-preview-copy strong {
        font-size: 1.45rem;
    }
}


/* =========================
   EXACT PLAYER PREVIEWS
   Uses local screenshots so external services remain unloaded pre-consent.
   ========================= */

.media-consent-spotify {
    min-height: 352px;
    height: 352px;
    border-radius: 12px;
}

.media-consent-youtube {
    min-height: 0;
    height: auto;
    aspect-ratio: 1200 / 568;
}

.media-preview-spotify,
.media-preview-youtube {
    padding: 0;
    display: block;
    background: #050505;
}

.media-preview-spotify > img,
.media-preview-youtube > img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    opacity: 1;
    filter: blur(1.4px) brightness(0.72);
    transform: scale(1.008);
}

.media-preview::after {
    background: rgba(0,0,0,0.14);
    backdrop-filter: none;
}

.media-consent-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 0;
    padding: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
}

.media-consent-overlay > * {
    position: relative;
    z-index: 2;
}

.media-consent-overlay::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(520px, calc(100% - 40px));
    height: 210px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    background: rgba(8,8,8,0.76);
    box-shadow: 0 10px 32px rgba(0,0,0,0.38);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.media-consent-label {
    display: none;
}

.media-consent-overlay h3 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.media-consent-overlay p {
    max-width: 430px;
    text-align: center;
    line-height: 1.5;
    color: rgba(255,255,255,0.82);
}

.media-consent-button {
    margin-top: 2px;
    background: rgba(255,255,255,0.96);
    color: #080808;
    border-color: rgba(255,255,255,0.96);
    font-weight: 700;
}

.media-consent-button:hover,
.media-consent-button:focus-visible {
    background: #fff;
    color: #000;
}

.media-consent-privacy {
    color: rgba(255,255,255,0.68);
}

@media (max-width: 700px) {
    .media-consent-spotify {
        height: auto;
        min-height: 0;
        aspect-ratio: 900 / 351;
        border-radius: 10px;
    }

    .media-consent-overlay {
        padding: 14px;
        gap: 8px;
    }

    .media-consent-overlay::before {
        width: min(430px, calc(100% - 24px));
        height: min(190px, calc(100% - 18px));
    }

    .media-consent-overlay h3 {
        font-size: 1rem;
    }

    .media-consent-overlay p {
        max-width: 360px;
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .media-consent-button {
        padding: 9px 14px;
        font-size: 0.65rem;
    }

    .media-consent-privacy {
        font-size: 0.64rem;
    }
}
