/* ============================================================
   Bill The Wreck — style.css
   Alle Styles zentral in dieser Datei
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Crimson+Pro:wght@300;400&display=swap');

/* ------------------------------------------------------------
   Reset & Basis
   ------------------------------------------------------------ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bark:  #3B2A1A;
    --soil:  #5C3D1E;
    --sand:  #C4A882;
    --cream: #F5EFE0;
    --rust:  #8B3A1A;
    --fog:   #9E8E7A;
    --leaf:  #4A5340;
    --dark:  #2A1E12;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Crimson Pro', Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--bark);
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.7;
}

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

img {
    max-width: 100%;
    display: block;
}

/* ------------------------------------------------------------
   Typografie
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

h1 { font-size: clamp(3.5rem, 10vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; color: var(--bark); }
h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------
   Zentrierter Hauptcontainer
   ------------------------------------------------------------ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* ------------------------------------------------------------
   Hilfselemente
   ------------------------------------------------------------ */
.section-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
    font-weight: 400;
    display: block;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--sand);
    margin: 2rem 0;
}

.btn-primary {
    display: inline-block;
    background: var(--bark);
    color: var(--cream);
    border: none;
    padding: 0.8rem 2.2rem;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--rust); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--bark);
    border: 1px solid var(--bark);
    padding: 0.8rem 2.2rem;
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--bark);
    color: var(--cream);
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
#site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 239, 224, 0.96);
    border-bottom: 1px solid var(--sand);
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    backdrop-filter: blur(4px);
}

#site-nav .nav-logo {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--bark);
}

#site-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

#site-nav ul a {
    font-size: 14px;
    font-weight: 300;
    color: var(--soil);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

#site-nav ul a:hover,
#site-nav ul a.active { color: var(--rust); }

/* Hamburger (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--bark);
    transition: all 0.3s;
}

/* ------------------------------------------------------------
   Header / Hero
   ------------------------------------------------------------ */
#site-header {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 4rem 3rem;
    background: linear-gradient(160deg, #EDE3CE 0%, #D4C5A4 60%, #C2AD88 100%);
    position: relative;
    overflow: hidden;
}

#site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-subtitle {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title {
    color: var(--bark);
    margin-bottom: 0.3rem;
    position: relative;
}

.hero-title em {
    font-style: italic;
    color: var(--soil);
}

.hero-desc {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--soil);
    max-width: 480px;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--fog);
    text-transform: uppercase;
}

/* ------------------------------------------------------------
   Sections — allgemein
   ------------------------------------------------------------ */
section {
    padding: 5rem 0;
}

/* ------------------------------------------------------------
   Biografie — inneres Grid
   ------------------------------------------------------------ */
.bio-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ------------------------------------------------------------
   Kontakt — inneres Grid
   ------------------------------------------------------------ */
.kontakt-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

/* ------------------------------------------------------------
   Willkommen
   ------------------------------------------------------------ */
#willkommen {
    background: #F0E8D4;
}

.welcome-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.welcome-text p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--soil);
    line-height: 1.8;
}

.welcome-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.welcome-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--sand);
    background: var(--cream);
    color: var(--bark);
    text-decoration: none;
    transition: all 0.2s;
}

.welcome-card:hover {
    background: var(--bark);
    color: var(--cream);
    border-color: var(--bark);
}

.welcome-card-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.welcome-card-label {
    flex: 1;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.welcome-card-arrow {
    font-size: 1rem;
    color: var(--rust);
    transition: transform 0.2s;
}

.welcome-card:hover .welcome-card-arrow {
    transform: translateX(4px);
    color: var(--sand);
}

/* ------------------------------------------------------------
   News Feed
   ------------------------------------------------------------ */
#news-feed {
    background: var(--cream);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feed-card {
    background: #F0E8D4;
    border: 1px solid var(--sand);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feed-card:hover {
    transform: translateY(-3px);
}

.feed-card--main {
    grid-column: span 2;
    background: var(--bark);
    border-color: var(--soil);
}

.feed-card--main h3,
.feed-card--main p { color: var(--cream); }
.feed-card--main .feed-date { color: var(--fog); }
.feed-card--main .feed-link { color: var(--sand); }
.feed-card--main .feed-tag {
    background: var(--rust);
    color: var(--cream);
}

.feed-card--cta {
    background: #EDE3CE;
    border: 2px solid var(--sand);
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.feed-card-cta-label {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--bark);
}

.feed-card--cta p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--soil);
    margin-bottom: 0.5rem;
}

.feed-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--sand);
    color: var(--bark);
    padding: 3px 10px;
    align-self: flex-start;
}

.feed-date {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--fog);
}

.feed-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.3;
    margin-bottom: 0;
}

.feed-card p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--soil);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0;
}

.feed-link {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s;
}

.feed-link:hover { color: var(--bark); }

.feed-more {
    margin-top: 2rem;
    text-align: center;
}

@media (max-width: 900px) {
    .welcome-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .feed-grid { grid-template-columns: 1fr 1fr; }
    .feed-card--main { grid-column: span 2; }
}

@media (max-width: 600px) {
    .feed-grid { grid-template-columns: 1fr; }
    .feed-card--main { grid-column: span 1; }
}

/* ------------------------------------------------------------
   News
   ------------------------------------------------------------ */
#news {
    background: #EDE3CE;
}

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

.news-card {
    border-top: 2px solid var(--sand);
    padding-top: 1.5rem;
}

.news-date {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--fog);
    margin-bottom: 0.5rem;
    display: block;
}

.news-card h3 {
    color: var(--bark);
    line-height: 1.3;
}

.news-card p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--soil);
}

/* ------------------------------------------------------------
   Musik
   ------------------------------------------------------------ */
#musik {
    background: var(--bark);
    color: var(--cream);
}

#musik .section-label { color: var(--sand); }
#musik h2              { color: var(--cream); }
#musik .divider        { background: var(--soil); }

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

.album-card {
    cursor: pointer;
    transition: transform 0.2s;
}

.album-card:hover { transform: translateY(-4px); }

.album-cover {
    width: 100%;
    aspect-ratio: 1;
    background: var(--soil);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    position: relative;
    overflow: hidden;
}

.album-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5C3D1E 0%, #3B2A1A 50%, #4A5340 100%);
}

.album-cover-icon {
    position: relative;
    font-size: 2.5rem;
}

.album-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.2rem;
}

.album-year {
    font-size: 13px;
    color: var(--fog);
}

/* ------------------------------------------------------------
   Kurzgeschichten
   ------------------------------------------------------------ */
#kurzgeschichten {
    background: #F0E8D4;
}

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

.story-card {
    border-left: 3px solid var(--sand);
    padding-left: 1.5rem;
}

.story-card h3 {
    font-style: italic;
    color: var(--bark);
    line-height: 1.3;
}

.story-card p {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--bark);
    line-height: 1.8;
}

.read-more {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rust);
    cursor: pointer;
    transition: color 0.2s;
}

.read-more:hover { color: var(--bark); }

/* ------------------------------------------------------------
   Galerie
   ------------------------------------------------------------ */
#galerie {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--sand);
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.gallery-item:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 200px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B8A07A;
    color: var(--bark);
    opacity: 0.4;
    font-size: 2rem;
}

.gallery-note {
    margin-top: 1rem;
    font-size: 14px;
    color: var(--fog);
    font-style: italic;
}

/* ------------------------------------------------------------
   Biografie
   ------------------------------------------------------------ */
#biografie {
    background: var(--dark);
    color: var(--cream);
}

#biografie .section-label { color: var(--sand); }
#biografie h2              { color: var(--cream); }
#biografie .divider        { background: var(--soil); }

.bio-text {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: #C4A882;
}

.bio-image {
    background: var(--soil);
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--sand);
    opacity: 0.3;
}

.bio-image-placeholder::after {
    content: 'Foto folgt';
    position: absolute;
    bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fog);
    letter-spacing: 0.1em;
}

/* ------------------------------------------------------------
   Blog
   ------------------------------------------------------------ */
#blog {
    background: #EDE3CE;
}

.blog-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand);
}

.blog-date-box { text-align: center; padding-top: 0.3rem; }

.blog-date-day {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--rust);
}

.blog-date-month {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fog);
}

.blog-item h3 {
    color: var(--bark);
    cursor: pointer;
    transition: color 0.2s;
}

.blog-item h3:hover { color: var(--rust); }

.blog-item p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--soil);
}

/* ------------------------------------------------------------
   Kontakt
   ------------------------------------------------------------ */
#kontakt {
    background: var(--cream);
}

.contact-intro {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--soil);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-email {
    font-size: 1rem;
    color: var(--fog);
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fog);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--sand);
    padding: 0.6rem 0;
    color: var(--bark);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus { border-bottom-color: var(--bark); }

.form-group textarea {
    resize: none;
    height: 120px;
}

.form-message {
    font-size: 14px;
    padding: 0.8rem 0;
    display: none;
}

.form-message.success { color: var(--leaf); display: block; }
.form-message.error   { color: var(--rust); display: block; }

/* ------------------------------------------------------------
   Legal-Seiten (Datenschutz, Impressum)
   ------------------------------------------------------------ */
.legal-text h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--bark);
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}

.legal-text p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--soil);
    line-height: 1.8;
}

.legal-text a {
    color: var(--rust);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
#site-footer {
    background: var(--dark);
    color: var(--fog);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: var(--fog);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--fog);
    transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--cream); }

.footer-copy {
    font-size: 12px;
    color: #5C4A38;
    margin-top: 2rem;
    width: 100%;
    border-top: 1px solid #3B2A1A;
    padding-top: 1.5rem;
}

/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */
@media (max-width: 900px) {
    .bio-inner,
    .kontakt-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .bio-image { aspect-ratio: 4/3; max-height: 400px; }
}

@media (max-width: 700px) {
    #site-nav { padding: 0 1.5rem; }

    #site-nav ul {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(245, 239, 224, 0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--sand);
        gap: 1rem;
    }

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

    .nav-toggle { display: flex; }

    #site-header { padding: 5rem 1.5rem 3rem; }

    section { padding: 3rem 1.5rem; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }

    .blog-item {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
    }

    #site-footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
    }

    .hero-scroll { display: none; }
}

/* ------------------------------------------------------------
   News — Featured + Tag
   ------------------------------------------------------------ */
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bark);
    margin-bottom: 2rem;
}

.news-featured-img {
    overflow: hidden;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--bark);
}

.news-featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.news-featured-body h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
}

.news-featured-body p {
    font-size: 1rem;
    font-weight: 300;
    color: #C4A882;
    line-height: 1.7;
}

.news-featured-body .news-date { color: var(--fog); }

.news-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--rust);
    color: var(--cream);
    padding: 3px 10px;
    margin-bottom: 0.3rem;
}

/* ------------------------------------------------------------
   Musik — Album Cards neu
   ------------------------------------------------------------ */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.album-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 1.5rem;
    align-items: start;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--soil);
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.album-card:hover { border-color: var(--sand); }

.album-cover {
    width: 160px;
    height: 160px;
    aspect-ratio: 1;
    background: var(--soil);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.album-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5C3D1E 0%, #3B2A1A 50%, #4A5340 100%);
}

.album-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-cover-icon {
    position: relative;
    font-size: 2rem;
}

.album-info { display: flex; flex-direction: column; gap: 0.5rem; }

.album-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.2;
}

.album-year {
    font-size: 13px;
    color: var(--fog);
}

.album-desc {
    font-size: 0.9rem;
    color: var(--fog);
    font-weight: 300;
    line-height: 1.5;
    margin-top: 0.2rem;
}

.album-cover--klickbar {
    cursor: pointer;
}

.album-cover--klickbar:hover img {
    opacity: 0.75;
}

.album-cover-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.2s;
    background: rgba(59,42,26,0.5);
}

.album-cover--klickbar:hover .album-cover-zoom {
    opacity: 1;
}
.btw-player {
    margin-top: 0.8rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--soil);
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btw-player audio { display: none; }

.btw-play-btn {
    width: 32px;
    height: 32px;
    background: var(--rust);
    border: none;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: background 0.2s;
}

.btw-play-btn:hover { background: #A04520; }

.btw-progress-wrap {
    flex: 1;
    height: 3px;
    background: var(--soil);
    cursor: pointer;
    position: relative;
}

.btw-progress-bar {
    height: 100%;
    background: var(--sand);
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

.btw-time {
    font-size: 11px;
    color: var(--fog);
    letter-spacing: 0.05em;
    min-width: 70px;
    text-align: right;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .album-grid { grid-template-columns: 1fr; }
    .album-card { grid-template-columns: 100px 1fr; gap: 1rem; }
    .album-cover { width: 100px; height: 100px; }
}
.musik-link {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.musik-link:hover { opacity: 0.75; }
.musik-link--spotify  { background: #1DB954; color: #fff; }
.musik-link--bandcamp { background: #1DA0C3; color: #fff; }
.musik-link--youtube  { background: #FF0000; color: #fff; }

.musik-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

.musik-action-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fog);
    background: transparent;
    border: 1px solid var(--soil);
    padding: 4px 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.musik-action-btn:hover {
    color: var(--cream);
    border-color: var(--sand);
}

.liedtext {
    margin-top: 1rem;
    border-top: 1px solid var(--soil);
    padding-top: 0.8rem;
}

.liedtext summary {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    cursor: pointer;
    list-style: none;
    outline: none;
}

.liedtext summary::-webkit-details-marker { display: none; }
.liedtext summary::before { content: '▸ '; }
details[open] .liedtext summary::before { content: '▾ '; }

.liedtext pre {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--fog);
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ------------------------------------------------------------
   Kurzgeschichten — aufklappbar
   ------------------------------------------------------------ */
.story-details {
    margin-top: 0.8rem;
}

.story-details summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

.story-details summary::-webkit-details-marker { display: none; }

.story-fulltext {
    margin-top: 1.2rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bark);
    line-height: 2;
    border-top: 1px solid var(--sand);
    padding-top: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--sand);
}

.story-p        { margin-bottom: 0; }
.story-spacer   { height: 1rem; }

.story-h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--bark);
    margin: 1.5rem 0 0.5rem;
}

.story-h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--soil);
    margin: 1.2rem 0 0.4rem;
}

.story-hr {
    border: none;
    border-top: 1px solid var(--sand);
    margin: 2rem 0;
    width: 60px;
}

.story-blockquote {
    border-left: 3px solid var(--rust);
    margin: 1.2rem 0;
    padding: 0.5rem 0 0.5rem 1.2rem;
    font-style: italic;
    color: var(--soil);
    font-size: 1.1rem;
}

.story-code {
    background: rgba(59,42,26,0.08);
    border: 1px solid var(--sand);
    padding: 0.8rem 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--bark);
    margin: 1rem 0;
    white-space: pre;
    overflow-x: auto;
    letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   Galerie — Lightbox Grid
   ------------------------------------------------------------ */
.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 8px;
    margin-top: 2rem;
}

.lightbox-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--sand);
}

.lightbox-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.lightbox-item:hover img { transform: scale(1.04); }

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(59, 42, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.lightbox-item:hover .lightbox-overlay { opacity: 1; }

.lightbox-overlay span {
    font-size: 2.5rem;
    color: var(--cream);
    font-weight: 300;
}

/* ------------------------------------------------------------
   Biografie Frontend
   ------------------------------------------------------------ */
.bio-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.bio-meta-item {
    border-top: 1px solid var(--soil);
    padding-top: 1rem;
}

.bio-meta-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 0.3rem;
    display: block;
}

.bio-meta-value {
    font-size: 1rem;
    font-weight: 300;
    color: #C4A882;
}

.bio-social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.bio-social-link {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand);
    text-decoration: none;
    border-bottom: 1px solid var(--soil);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.bio-social-link:hover { color: var(--cream); border-color: var(--sand); }

/* ------------------------------------------------------------
   Responsive Ergänzungen
   ------------------------------------------------------------ */
@media (max-width: 700px) {
    .news-featured { grid-template-columns: 1fr; }
    .news-featured-img { min-height: 200px; }
    .lightbox-grid { grid-template-columns: repeat(2, 1fr); }
}
