/* =========================================
   GLOBAL BASICS & THEME
   ========================================= */

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

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

:root {
    --bg-main: #08070b;
    --bg-panel: rgba(18, 16, 26, 0.95);
    --accent: #f7b0ff;
    --accent-soft: #f6e7ff;
    --accent-strong: #ff4fa3;
    --text-main: #f5f4ff;
    --text-muted: #b4b0c8;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-round: 999px;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", Roboto, sans-serif;
}

body {
    font-family: var(--font-main);
    background:
        radial-gradient(circle at top left, #1c1230 0, transparent 55%),
        radial-gradient(circle at bottom right, #2a1435 0, transparent 50%),
        var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
}

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


/* Links (global) */
a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================================
   SITE HEADER / NAV (Logo links, Nav rechts)
   ========================================= */

.site-header {
    width: 100%;
    padding: 1.25rem 2rem 0.5rem;
    display: flex;
    align-items: center;
}

.site-logo {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.95;
}

.site-logo a {
    color: var(--text-main);
    text-decoration: none;
}

.site-logo a:hover {
    color: var(--accent);
    text-decoration: none;
}

/* NAV */
.site-header .main-nav {
    margin-left: auto;
    display: flex;
    gap: 1.5rem;
}

.site-header .main-nav a {
    position: relative;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;

    color: var(--text-main);
    opacity: 0.85;
    text-decoration: none;

    padding-bottom: 0.15rem;
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* HOVER wie Shop */
.site-header .main-nav a:hover {
    opacity: 1;
    color: var(--accent);
    text-decoration: none;
}

/* ACTIVE (einheitlich, kein href-Matching mehr!) */
.site-header .main-nav a.active {
    opacity: 1;
    color: var(--accent);
}

/* Underline wie Shop */
.site-header .main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: var(--accent);
}

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

.site-footer {
    width: 100%;
    text-align: center;
    padding: 3rem 1.5rem 1.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Footer-Links: NICHT pink im Normalzustand, Hover wie Menü */
.site-footer a,
.site-footer a:visited {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--accent);
    opacity: 1;
    text-decoration: none;
}

/* =========================================
   MAIN LAYOUT (alle Seiten)
   ========================================= */

.page-main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 4rem;
}

/* Überschriften */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: 0.04em;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Panels (falls du sie nutzt) */
.panel {
    background: var(--bg-panel);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    padding: 1.75rem 1.75rem 2rem;
}

/* =========================================
   PAGE HEADER (Podcast/Fotos/Shop Seiten)
   ========================================= */

.page-header {
    margin: 1.5rem 0 1.25rem;
}

.page-title {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    letter-spacing: 0.02em;
}

.page-subtitle {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 70ch;
}

.podcast-intro {
    margin: 1.25rem 0 1.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 80ch;
}

/* =========================================
   INDEX / LANDINGPAGE
   ========================================= */

.landing-page {
    min-height: calc(100vh - 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-center {
    position: relative;
    max-width: 900px;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
}

/* zentriertes Kollektiv-Bild */
.landing-image {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 70%;
    height: auto;
    width: auto;
    z-index: 1;
    pointer-events: none;
}

/* Container für Bubbles */
.landing-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Basis-Bubble-Style: nur Rand, leichte Opacity, Hover wie Menü */
.bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;

    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;

    pointer-events: auto;

    opacity: 0.9;
    transition: opacity 0.2s ease, color 0.2s ease, border-color 0.2s ease;

    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* zweite dünne Linie */
.bubble::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.bubble:hover {
    opacity: 1;
    color: var(--accent);
    /* Hover-Farbe wie im Menü */
    border-color: rgba(255, 255, 255, 0.55);
}

.bubble:hover .bubble-label {
    color: var(--accent);
}

.bubble-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

/* Positionen / Größen */
.bubble--podcast {
    width: 190px;
    height: 190px;
    top: 7%;
    left: 4%;
    animation-name: bubbleFloatA;
    animation-duration: 9s;
}

.bubble--photos {
    width: 160px;
    height: 160px;
    bottom: 9%;
    left: 1%;
    animation-name: bubbleFloatB;
    animation-duration: 11s;
}

.bubble--shop {
    width: 120px;
    height: 120px;
    top: 14%;
    right: 16%;
    animation-name: bubbleFloatC;
    animation-duration: 8s;
}

.bubble--vinyl {
    width: 170px;
    height: 170px;

    top: 50%;
    right: 8%;

    animation-name: bubbleFloatB;
    animation-duration: 13s;
}

/* Floating */
@keyframes bubbleFloatA {
    0% {
        transform: translate(-4px, 0);
    }

    25% {
        transform: translate(4px, -12px);
    }

    50% {
        transform: translate(10px, -4px);
    }

    75% {
        transform: translate(-8px, -10px);
    }

    100% {
        transform: translate(-4px, 0);
    }
}

@keyframes bubbleFloatB {
    0% {
        transform: translate(5px, 2px);
    }

    20% {
        transform: translate(0, -14px);
    }

    40% {
        transform: translate(-10px, -6px);
    }

    60% {
        transform: translate(-3px, 10px);
    }

    80% {
        transform: translate(6px, -8px);
    }

    100% {
        transform: translate(5px, 2px);
    }
}

@keyframes bubbleFloatC {
    0% {
        transform: translate(0, 0);
    }

    30% {
        transform: translate(-8px, -10px);
    }

    50% {
        transform: translate(4px, -4px);
    }

    70% {
        transform: translate(10px, 8px);
    }

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

/* =========================================
   PODCAST-SEITE – TIMELINE
   ========================================= */

.podcast-section {
    margin-top: 1.5rem;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0.85rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.05));
}

.timeline li {
    position: relative;
    margin: 2rem 0;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);

}

.timeline li::before {
    content: "";
    position: absolute;
    left: 0.65rem;
    top: 1.5rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent-strong);
    box-shadow: 0 0 0 4px rgba(247, 176, 255, 0.3);
}

.episode-cover,
.episode-cover {
    width: 110px;
    height: 110px;
    max-width: 110px;
    max-height: 110px;
    object-fit: cover;
    border-radius: 14px;
    float: left;
    margin-right: 1.25rem;
    margin-bottom: 0.5rem;
}


.episode-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.episode-title a {
    text-decoration: none;
    color: var(--text-main);
}

.episode-title a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.episode-date {
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.episode-desc {
    white-space: pre-wrap;
    margin: 0.5rem 0 0.5rem 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.episode-audio {
    width: 100%;
    margin-top: 0.75rem;
    max-width: 500px;
    border-radius: 999px;
}

.episode-number {
    font-size: 1.0rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

/* =========================================
   PODCAST – BESCHREIBUNG MIT MEHR/WENIGER
   ========================================= */

.episode-desc-wrap {
    clear: both;
    /* sorgt dafür, dass Text UNTER dem Cover beginnt */
    margin-top: 0.75rem;
}

.episode-desc {
    margin: 0.5rem 0 0.25rem;
    color: var(--text-muted);
    line-height: 1.55;
    white-space: pre-wrap;
}

.episode-more {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: var(--accent);
    cursor: pointer;
    opacity: 0.85;
}

.episode-more:hover {
    opacity: 1;
    text-decoration: underline;
}


/* =========================================
   GENERISCHE SECTION-STYLES (Fotos etc.)
   ========================================= */

.section-heading {
    margin-bottom: 1rem;
}

.section-subtitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    min-height: 150px;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 768px) {
    .site-header {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .site-header .main-nav {
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-main {
        padding-inline: 1.25rem;
    }

    .landing-center {
        aspect-ratio: auto;
        padding: 5rem 1.5rem 3rem;
    }

    .landing-image {
        position: static;
        transform: none;
        display: block;
        margin: 0 auto 2rem auto;
        max-width: 80%;
        max-height: none;
    }

    .landing-bubbles {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        pointer-events: none;
    }

    .bubble {
        position: static;
        width: 70%;
        max-width: 280px;
        height: 64px;
        border-radius: 32px;
        animation: bubbleFloatA 10s ease-in-out infinite;
    }

    .bubble-label {
        font-size: 0.95rem;
    }

    .timeline::before {
        left: 0.6rem;
    }

    .timeline li {
        padding: 1.25rem 1.25rem 1.25rem 2.2rem;
    }

    .timeline li::before {
        left: 0.4rem;
    }

    .episode-cover,
    .episode_cover {
        width: 64px;
        height: 64px;
    }
}

/* =========================================
   FOTOS – GRID + LIGHTBOX
   ========================================= */

.page-header {
    margin-bottom: 1.25rem;
}

.page-title {
    margin: 0 0 0.25rem 0;
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.page-subtitle {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

.photos-intro p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.photos-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.9rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.photos-section {
    margin-top: 1.5rem;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0 0.75rem;
}

.section-title {
    margin: 0;
    font-size: 1.2rem;
}

.section-note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: right;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.8rem;
}

.photo-card {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    transform: translateZ(0);

}


.photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    filter: saturate(1.02) contrast(1.02);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.95;
    transform: scale(1.08);
    transform-origin: center;
}


.photo-card:hover img {
    transform: scale(1.10);
    opacity: 1;
}

/* Layout: große/kleine Kacheln automatisch (ohne JS) */
.photo-grid .photo-card:nth-child(1) {
    grid-column: span 6;
}

.photo-grid .photo-card:nth-child(2) {
    grid-column: span 3;
}

.photo-grid .photo-card:nth-child(3) {
    grid-column: span 3;
}

.photo-grid .photo-card:nth-child(4) {
    grid-column: span 4;
}

.photo-grid .photo-card:nth-child(5) {
    grid-column: span 4;
}

.photo-grid .photo-card:nth-child(6) {
    grid-column: span 4;
}

/* Wenn weniger Bilder da sind, bricht es trotzdem sauber */
.photo-grid .photo-card {
    min-height: 160px;
}

/* LIGHTBOX */
.no-scroll {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem 1rem;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-img {
    max-width: min(1100px, 92vw);
    max-height: 78vh;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-caption {
    position: fixed;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    pointer-events: none;
}

.lightbox-close {
    position: fixed;
    top: 0.85rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 26px;
    line-height: 40px;
    cursor: pointer;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 30px;
    line-height: 40px;
    cursor: pointer;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-note {
        text-align: left;
    }

    .photo-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .photo-grid .photo-card:nth-child(1) {
        grid-column: span 6;
    }

    .photo-grid .photo-card:nth-child(2),
    .photo-grid .photo-card:nth-child(3),
    .photo-grid .photo-card:nth-child(4),
    .photo-grid .photo-card:nth-child(5),
    .photo-grid .photo-card:nth-child(6) {
        grid-column: span 3;
    }
}

/* =========================================
   NAV – ACTIVE STATE
   ========================================= */

/* HOME */
.page-home .main-nav a[href="index.html"],
.page-home .main-nav a[href="index.html"]::after {
    color: var(--accent);
    opacity: 1;
}

/* PODCAST */
.page-podcast .main-nav a[href="podcast.php"],
.page-podcast .main-nav a[href="podcast.php"]::after {
    color: var(--accent);
    opacity: 1;
}

.page-podcast .main-nav a[href="podcast.html"],
.page-podcast .main-nav a[href="podcast.html"]::after {
    color: var(--accent);
    opacity: 1;
}

/* FOTOS */
.page-fotos .main-nav a[href="fotos.html"],
.page-fotos .main-nav a[href="fotos.html"]::after {
    color: var(--accent);
    opacity: 1;
}

/* SHOP (falls vorhanden) */
.page-shop .main-nav a[href="shop.html"],
.page-shop .main-nav a[href="shop.html"]::after {
    color: var(--accent);
    opacity: 1;
}

/* VINYL (NEU) */
.page-vinyl .main-nav a[href="vinyl.html"],
.page-vinyl .main-nav a[href="vinyl.html"]::after {
    color: var(--accent);
    opacity: 1;
}
/* =========================================
   PODCAST – STREAMING PLATTFORMEN (OVALE)
   ========================================= */

.podcast-platforms {
    margin: 1.25rem 0 1.75rem;
}

.platforms-title {
    margin: 0 0 0.6rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Container */
.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* Ovale Pills */
.platform-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);

    background: transparent;

    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;

    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;

    transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* Hover exakt wie Menü oben rechts */
.platform-pill:hover,
.platform-pill:focus {
    color: var(--accent);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    text-decoration: none;
}

/* =========================================
   FOTOS – RANDOM MINI STRIP im Intro-Panel
   ========================================= */

.photos-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.photos-random {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}

.photos-random a {
    display: block;
    width: 138px;
    height: 138px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
}

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

/* optional: auf größeren Screens Text links, Strip rechts */
@media (min-width: 820px) {
    .photos-intro {
        grid-template-columns: 1fr auto;
        align-items: start;
    }

    .photos-meta {
        grid-column: 1 / -1;
    }
}

/* =========================================
   FOTOS – SW: ab Bild 7 echte Quadrate
   ========================================= */

/* Ab Bild 7: Kachel quadratisch erzwingen */
.photo-grid[data-gallery="sw"] .photo-card:nth-child(n+7) {
    grid-column: span 2;
    aspect-ratio: 1 / 1;
    min-height: 0;
    /* wichtig: hebt alte Mindesthöhe auf */
}

/* Bild füllt das Quadrat */
.photo-grid[data-gallery="sw"] .photo-card:nth-child(n+7) img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    transform: scale(1.02);
}

/* Ruhiger Hover */
.photo-grid[data-gallery="sw"] .photo-card:nth-child(n+7):hover img {
    transform: scale(1.05);
}

/* =========================================
   LANDING – Mobile: KEIN großes Oval
   ========================================= */
@media (max-width: 768px) {
    .landing-center {
        border: none !important;
        border-radius: 0 !important;
    }

    .landing-center::before,
    .landing-center::after {
        content: none !important;
    }
}

@media (max-width: 768px) {
    .landing-bubbles {
        position: static;
    }

    .landing-bubbles .bubble {
        position: static;
        animation: none;
        transform: none;
    }
}

/* =========================================
   MOBILE FIX – BUBBLES OHNE GROSSES OVAL
   ========================================= */
@media (max-width: 768px) {

    /* Container darf kein Oval erzeugen */
    .landing-bubbles {
        position: static;
    }

    /* Jede Bubble wird zu einem normalen Button */
    .bubble {
        position: static !important;
        width: 100% !important;
        max-width: 280px;
        height: 56px;

        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.35);

        animation: none !important;
        transform: none !important;
    }

    /* ❗ WICHTIG: das zweite Linien-Oval killen */
    .bubble::after {
        display: none !important;
    }
}

/* =========================================
   SCROLL FOCUS – FOTOS (NO BG BLUR)
   ========================================= */

/* Basiszustand: leicht unscharf */
.page-fotos .photos-section,
.page-fotos .photo-card {
    filter: blur(4px);
    opacity: 0.45;
    transform: scale(0.985);
    transition:
        filter 0.6s ease,
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: filter, opacity, transform;
}

/* Wenn im Fokus */
.page-fotos .photos-section.in-view,
.page-fotos .photo-card.in-view {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

/* Optional: Section-Header etwas früher scharf */
.page-fotos .section-head {
    filter: blur(4px);
    opacity: 0.6;
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.page-fotos .section-head.in-view {
    filter: blur(0);
    opacity: 1;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    .page-fotos .photos-section,
    .page-fotos .photo-card,
    .page-fotos .section-head {
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================
   SCROLL FOCUS – PODCAST TIMELINE
   ========================================= */

/* Grundzustand: leicht unscharf */
.page-podcast .timeline li {
    filter: blur(3px);
    opacity: 0.45;
    transform: scale(0.985);
    transition:
        filter 0.6s ease,
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: filter, opacity, transform;
}

/* Im Fokus */
.page-podcast .timeline li.in-view {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

/* Optional: Timeline-Linie etwas ruhiger */
.page-podcast .timeline::before {
    opacity: 0.25;
    transition: opacity 0.4s ease;
}

.page-podcast .timeline li.in-view ~ li {
    opacity: 0.45;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .page-podcast .timeline li {
        filter: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================
   PODCAST – SCROLL FOCUS FIX (BOTTOM)
   ========================================= */

.page-podcast .timeline {
    padding-bottom: 10vh;
}

/* =========================================
   IMAGE PROTECTION (kein Download, kein Drag)
   ========================================= */

/* Bilder nicht auswählbar */
img {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

/* Kein Drag & Drop */
img,
.photo-card,
.photo-card img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Long-Press Kontextmenü (iOS / Android) */
.photo-card,
.photo-card img {
    -webkit-touch-callout: none;
}

/* =========================================
   RESPONSIVE – LOGO NICHT ZU KLEIN
   ========================================= */

@media (max-width: 768px) {
    .site-logo {
        font-size: 1rem;
        /* vorher ~0.9rem → etwas kräftiger */
        letter-spacing: 0.18em;
        /* minimal enger, wirkt ruhiger */
    }
}

/* =========================================
   VINYL GRID
========================================= */

.vinyl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* =========================================
   VINYL CARD (ONLY ONE DEFINITION!)
========================================= */

.vinyl-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);

    aspect-ratio: 1 / 1;

    perspective: 1200px;

    /* scroll animation */
    opacity: 0.35;
    transform: scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.25s ease;
}

.vinyl-item.in-view {
    opacity: 1;
    transform: scale(1);
}

/* hover lift (safe, no transform conflict with inner flip) */
.vinyl-item:hover {
    border-color: rgba(247, 176, 255, 0.5);
}

/* =========================================
   FLIP STRUCTURE
========================================= */

.vinyl-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.vinyl-item:hover .vinyl-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.vinyl-front,
.vinyl-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

/* FRONT */
.vinyl-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   BACK SIDE
========================================= */

.vinyl-back {
    background: #0e0e12;
    color: white;
    transform: rotateY(180deg);

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

    padding: 15px;
    text-align: left;
}

/* CONTENT LAYOUT */
.vinyl-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* TITLE */
.vinyl-info h3 {
    margin: 0;
    font-size: 14px;
}

/* ALBUM TITLE */
.vinyl-info p {
    margin: 5px 0;
    opacity: 0.8;
}

/* YEAR */
.vinyl-year {
    font-size: 12px;
    opacity: 0.6;
}

/* TAGS */
.vinyl-tags {
    margin-top: 10px;
}

.tag {
    display: inline-block;
    font-size: 10px;
    padding: 3px 6px;
    margin: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* PRICE BLOCK */
.vinyl-price {
    margin-top: auto;
    font-size: 11px;
    opacity: 0.75;
}

/* PRICE META */
.price-meta {
    margin-top: 8px;
    font-size: 11px;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
}

/* COLORS */
.want {
    color: #ff4d6d;
}

.have {
    color: #4dd6ff;
}

/* =========================
   MOBILE FLIP STATE FIX
========================= */

@media (hover: hover) {
    .vinyl-item:hover .vinyl-inner {
        transform: rotateY(180deg);
    }
}

/* Touch / Mobile Flip */
.vinyl-item.is-flipped .vinyl-inner {
    transform: rotateY(180deg);
}

@media (max-width: 768px) {

    .vinyl-price {
        font-size: 14px;
        line-height: 1.4;
    }

    .price-meta {
        font-size: 13px;
        gap: 10px;
    }

    .vinyl-info h3 {
        font-size: 15px;
    }

    .vinyl-info p {
        font-size: 13px;
    }

    .vinyl-back {
        align-items: flex-start;
    }
}