﻿/* Base */
:root {
    --bg1: #2a1838;
    --bg2: #120a1a;
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.7);
    --card: #0b0710;
    /* Slider sizes */
    --slideW: 520px; /* Breite eines Slides */
    --slideGap: 18px;
    --radius: 18px;
}

html, body {
    min-height: 100%;
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: #c7b8a5;
    background-repeat: no-repeat;
    background-size: cover;
}
/*#D7E3DC     mint?*/
/*#E6E0D8     beige?*/
/*#c7b8a5     coffeelounge? */
/*radial-gradient(2000px 1500px at 20% 0%, rgba(88, 70, 109,.85) 0%, rgba(88, 70, 109,.25) 90%, rgba(88, 70, 109,0) 100%), linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%)*/
a {
    color: inherit;
}

/* Layout */
.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    padding: 24px;
}

/* Header band (slow loop) */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent;
    backdrop-filter: blur(8px);
}

.header-band {
    height: 150px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.band-track {
    height: 200px;
    display: flex;
    gap: 0;
    align-items: center;
    will-change: transform;
    animation: bandScroll 40s linear infinite;
}

    .band-track img {
        height: 860px;
        width: 800px;
        object-fit: cover;
        display: block;
        opacity: .95;
    }

@keyframes bandScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
    /* weil 2x Sequenz */
}

/* Nav (dezent) */
.header-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 10px 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.10);
}

.nav-item {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255,255,255,.72);
    padding: 6px 10px;
    border-radius: 999px;
}

    .nav-item:hover {
        color: #fff;
        background: rgba(255,255,255,.08);
    }

    .nav-item.active {
        color: #fff;
        background: rgba(255,255,255,.12);
    }

/* Home */
.home {
    max-width: 1100px;
    margin: 0 auto;
}

.home-h1 {
    margin: 0 0 6px;
    font-size: 34px;
    letter-spacing: .02em;
}

.home-sub {
    margin: 0 0 18px;
    color: var(--muted);
}

/* Slider */
.slider {
    position: relative;
    max-width: 1100px;
    margin: 14px auto 0;
    padding: 18px 44px;
}

.slider-viewport {
    overflow: hidden;
    border-radius: var(--radius);
}

.slider-track {
    display: flex;
    gap: var(--slideGap);
    transition: transform .35s ease;
    padding: 12px;
}

.slide {
    width: var(--slideW);
    flex: 0 0 var(--slideW);
    text-decoration: none;
    background: rgba(0,0,0,.40);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
}

.slide-media {
    height: 340px;
    background: #000;
    overflow: hidden;
}

    .slide-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform .28s ease;
        display: block;
    }

.slide:hover .slide-media img {
    transform: scale(1.06);
}

.slide-caption {
    padding: 14px 16px 16px;
}

.slide-title {
    font-weight: 700;
    margin: 0 0 6px;
}

.slide-hint {
    font-size: 12px;
    color: var(--muted);
}

/* Slider buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.35);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

    .slider-btn:hover {
        background: rgba(0,0,0,.55);
    }

    .slider-btn.left {
        left: 0;
    }

    .slider-btn.right {
        right: 0;
    }

/* Gallery grid */
.page-section {
    max-width: 1100px;
    margin: 0 auto;
}

.page-h1 {
    margin: 0 0 14px;
    font-size: 34px;
}

.page-p {
    color: var(--muted);
    max-width: 70ch;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    text-decoration: none;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
   /* border-radius: var(--radius);*/
    overflow: hidden;
}

    .gallery-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        transition: transform .25s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.04);
    }

.gallery-title {
    padding: 12px 14px 14px;
    font-weight: 650;
}

.gallery-text {
    padding: 0.75rem 0.75rem 1rem;
}

.gallery-dimensions {
    font-size: 0.85rem; /* dünner als Titel */
    font-weight: 400;
    opacity: 0.75; /* ruhiger */
    letter-spacing: 0.02em;
}

/*.gallery-dimensions {
    font-style: italic;
}*/

/* Detail */
.detail {
    max-width: 1100px;
    margin: 0 auto;
}

.detail-card {
    margin-top: 14px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius);
    overflow: hidden;
}

.detail-img {
    width: 100%;
    max-height: 640px;
    object-fit: contain;
    background: transparent;
    display: block;
}

.detail-meta {
    padding: 16px 18px 20px;
}

.detail-title {
    margin: 0 0 8px;
    font-size: 30px;
}

.detail-desc {
    margin: 0;
    color: var(--muted);
}

.detail .btn {
    position: relative;
    z-index: 50;
    pointer-events: auto;
}

/* Simple button */
.btn {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.35);
    color: #fff;
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
}

    .btn:hover {
        background: rgba(0,0,0,.55);
    }

/* Responsive */
@media (max-width: 1050px) {
    :root {
        --slideW: 420px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    :root {
        --slideW: 86vw;
    }

    .slider {
        padding: 18px 8px;
    }

    .slider-btn {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Focus Slider (5 visible) ===== */
.focus-slider {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 14px;
    max-width: 1200px;
    margin: 18px auto 0;
}

.fs-btn {
    height: 44px;
    width: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(0,0,0,.25);
    color: rgba(255,255,255,.9);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

    .fs-btn:hover {
        background: rgba(0,0,0,.35);
    }

.fs-stage {
    position: relative;
    height: 420px;
}

/* base card */
.fs-card {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(560px, 70%);
    border: 0;
    padding: 0;
    cursor: pointer;
    background: rgba(0,0,0,.18);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .25s ease, opacity .25s ease;
}

.fs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fs-title {
    position: absolute;
    left: 14px;
    bottom: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
    background: rgba(0,0,0,.35);
    padding: 8px 10px;
    border-radius: 12px;
}

/* Positions */
.fs-card.is-center {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 5;
}

.fs-card.is-left {
    left: 30%;
    transform: translateX(-50%) scale(.86);
    opacity: .85;
    z-index: 4;
}

.fs-card.is-right {
    left: 70%;
    transform: translateX(-50%) scale(.86);
    opacity: .85;
    z-index: 4;
}

.fs-card.is-far-left {
    left: 14%;
    transform: translateX(-50%) scale(.74);
    opacity: .55;
    z-index: 3;
}

.fs-card.is-far-right {
    left: 86%;
    transform: translateX(-50%) scale(.74);
    opacity: .55;
    z-index: 3;
}

.fs-card.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(.65);
}

/* Hover: nur Zentrum leicht größer */
.fs-card.is-center:hover {
    transform: translateX(-50%) scale(1.03);
}

/* actions */
.fs-actions {
    max-width: 1200px;
    margin: 12px auto 0;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
    .fs-stage {
        height: 340px;
    }

    .fs-card {
        width: 92%;
    }

        .fs-card.is-left, .fs-card.is-right {
            opacity: .0;
            pointer-events: none;
        }

        .fs-card.is-far-left, .fs-card.is-far-right {
            opacity: .0;
            pointer-events: none;
        }
}

.focus-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto;
    max-width: 1200px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    pointer-events: auto;
}

.carousel-item {
    position: absolute;
    transition: transform .4s ease, opacity .4s ease;
    cursor: pointer;
    pointer-events: auto;
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 18px;
    }

/* Fokus-Logik */
.pos-0 {
    width: 520px;
    height: 360px;
    transform: scale(1);
    z-index: 5;
}

.pos--1, .pos-1 {
    width: 360px;
    height: 260px;
    opacity: .8;
    transform: translateX(calc(var(--dir) * 360px)) scale(.9);
    z-index: 3;
}

.pos--2, .pos-2 {
    width: 260px;
    height: 180px;
    opacity: .4;
    transform: translateX(calc(var(--dir) * 560px)) scale(.8);
    z-index: 1;
}

.pos--1 {
    --dir: -1;
}

.pos--2 {
    --dir: -1;
}

.pos-1 {
    --dir: 1;
}

.pos-2 {
    --dir: 1;
}

/* NAV BUTTONS */
.nav-btn {
    background: none;
    border: none;
    font-size: 64px;
    color: white;
    cursor: pointer;
    z-index: 10;
    pointer-events: auto;
}






.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
}

.track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s ease;
    align-items: center;
}

/* einzelnes Slide */
.item {
    flex: 0 0 220px;
    transform: scale(0.8);
    opacity: 0.5;
    transition: transform 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
}

    /* aktives (mittleres) Bild */
    .item.active {
        transform: scale(1.15);
        opacity: 1;
        z-index: 2;
    }

    /* Bilder selbst */
    .item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 16px;
        display: block;
    }

    /* Titel */
    .item span {
        display: block;
        margin-top: 8px;
        text-align: center;
        color: white;
        font-size: 0.9rem;
    }

/* Navigation */
.carousel .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

    .carousel .nav.left {
        left: -10px;
    }

    .carousel .nav.right {
        right: -10px;
    }

/* =========================
   VIEW TOGGLE
   ========================= */

.view-toggle {
    display: flex;
    gap: 12px;
    margin: 24px auto 32px;
    max-width: 980px;
}

    .view-toggle button {
        width: 42px;
        height: 36px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,.25);
        background: rgba(255,255,255,.08);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .view-toggle button.active {
            background: rgba(255,255,255,.28);
        }

/* =========================
   GALLERY GRID
   ========================= */

.gallery-grid {
    display: grid;
    gap: 28px;
    max-width: 980px;
    margin: 0 auto 80px;
}

    /* SPALTEN */
    .gallery-grid.cols-1 {
        grid-template-columns: 1fr;
    }

    .gallery-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

/* =========================
   KACHEL
   ========================= */

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* zentriert die Kacheln */
    gap: 24px;
}

.gallery-card {
    background: rgba(0,0,0,.35);
    /*border-radius: 22px;*/
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: transform .25s ease;
    
    display: inline-block;
    width: fit-content;
}

.gallery-card:hover {
    transform: scale(1.02);
}

.gallery-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.gallery-grid.cols-1 .gallery-card img {
    height: auto;
    max-height: 70vh;
}

.gallery-grid.cols-2 img {
    height: 420px;
}

.gallery-grid.cols-3 img {
    height: 320px;
}

.gallery-title {
    padding: 16px;
    font-weight: 700;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {
    .gallery-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-card img {
        height: 300px;
    }
}


.icon {
    width: 22px;
    height: 16px;
    display: grid;
    gap: 3px;
}

    .icon div {
        background: white;
        border-radius: 2px;
    }

/* 1 COLUMN */
.icon-1 {
    grid-template-columns: 1fr;
}

    .icon-1::before {
        content: "";
        background: white;
        border-radius: 2px;
    }

/* 2 COLUMNS */
.icon-2 {
    grid-template-columns: repeat(2, 1fr);
}

    .icon-2::before,
    .icon-2::after {
        content: "";
        background: white;
        border-radius: 2px;
    }

/* ichtig: echte Grid-Zellen */
.icon-2 {
    display: grid;
}

    .icon-2::before {
        grid-column: 1
    }

    .icon-2::after {
        grid-column: 2
    }

/* 3 COLUMNS */
.icon-3 {
    grid-template-columns: repeat(3, 1fr);
}

    .icon-3::before,
    .icon-3::after,
    .icon-3 span {
        content: "";
        background: white;
        border-radius: 2px;
    }

    .icon-3 span {
        display: none
    }


.icon {
    width: 22px;
    height: 16px;
    display: grid;
    gap: 3px;
}

    .icon > div {
        background: #fff;
        border-radius: 2px;
    }

/* 3 columns icon */
.icon-3 {
    grid-template-columns: repeat(3, 1fr);
}




/* ===== Detail: Main + Thumbnails ===== */
.detail-shell {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 18px;
    align-items: start;
    max-width: 1100px;
}

.detail-main {
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
}

.detail-img {
    width: 100%;
    height: min(70vh, 720px);
    object-fit: contain;
    display: block;
}

/* SOLD direkt UNTER dem Bild */
.detail-sold {
    margin-top: 14px;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    font-weight: 700;
    color: red;
    opacity: 0.85;
}

.detail-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumb {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.25);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

    .thumb img {
        width: 100%;
        height: 96px;
        object-fit: cover;
        display: block;
        opacity: .85;
    }

    .thumb:hover img {
        opacity: 1;
    }

    .thumb.is-active {
        border-color: rgba(255,255,255,.55);
        background: rgba(255,255,255,.06);
    }

@media (max-width: 900px) {
    .detail-shell {
        grid-template-columns: 1fr;
    }

    .detail-thumbs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .thumb {
        flex: 0 0 140px;
    }

        .thumb img {
            height: 90px;
        }
}


/* Thumbnail-Button */
.thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px;
}

/* Preis unter Thumbnail */
.thumb-price {
    font-size: 2.3rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* Aktives Thumbnail */
.thumb.is-active .thumb-price {
    color: #fff;
    font-weight: 600;
}

.buy-btn {
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(0,0,0,.35);
    color: #fff;
    margin-top: 10px;
    padding: 12px 24px;
    border-radius: 999px;
   /* border: none;
    background: linear-gradient(135deg, #ffffff, #e5e5e5);
    color: #1a1a1a;*/
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


/* ===== Overlay Logo (oben links, über allem) ===== */
.signature {
    display: none;
    pointer-events: none;
    height: auto;
    z-index: 20;
}

.signature-desktop {
    display: block;
    position: absolute;
    top: -80px;
    left: -200px;
    width: 1100px;
}

.overlay-logo {
    position: fixed;
    top: -100px !important;
    left: -230px !important;
    z-index: 9999; /* über header/navbar/body */
    width: 1200px; /* Größe anpassen */
    height: auto;
    pointer-events: none; /* blockiert keine Klicks auf Nav/Buttons */
    opacity: 0;
    transform: translateY(-10px) scale(.98);
    animation: logoIn .7s ease-out .15s forwards;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,.28));
}

@keyframes logoIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Optional: auf sehr kleinen Screens kleiner */
@media (max-width: 520px) {
    .overlay-logo {
        width: 110px;
        top: 12px;
        left: 12px;
    }
}

/* =========================
   ABOUT ME
========================= */

.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 24px 96px;
}

.about-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient( 180deg, rgba(255,255,255,.06), rgba(0,0,0,.12) );
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

/* Portrait */
.about-image {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Text */
.about-content {
    color: #f2f2f2;
}

.about-title {
    font-size: 2.4rem;
    margin-bottom: 24px;
    letter-spacing: .5px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: .92;
    margin-bottom: 18px;
}

.about-signature {
    margin-top: 32px;
    font-style: italic;
    opacity: .7;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .about-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .about-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-title {
        text-align: center;
    }
}


.impressum-block {
    margin-bottom: 2.5rem;
    max-width: 820px;
}

    .impressum-block h2 {
        font-size: 1.1rem;
        margin-bottom: .5rem;
        color: rgba(255,255,255,.9);
    }

    .impressum-block p {
        line-height: 1.6;
        color: rgba(255,255,255,.8);
    }

    .impressum-block a {
        color: #e6d7ff;
        text-decoration: underline;
    }

        .impressum-block a:hover {
            opacity: .8;
        }

        /*Footer*/

.site-footer {
    margin-top: 6rem;
    padding: 2.5rem 1rem 2rem;
    text-align: center;
    background: linear-gradient( to bottom, rgba(255,255,255,0.03), rgba(0,0,0,0.15) );
    position: relative;
    z-index: 1;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

    .footer-nav a {
        color: rgba(255,255,255,.7);
        text-decoration: none;
        font-size: .95rem;
    }

        .footer-nav a:hover {
            color: white;
        }

.footer-copy {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
}


/* ===== Modal (Inquiry) ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 9999; /* garantiert über allem */
    display: grid;
    place-items: center;
    padding: 24px;
}

.modal-panel {
    position: relative;
    width: min(720px, 92vw);
    max-height: min(82vh, 900px);
    overflow: auto;
    background: rgba(25,16,35,.96);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 22px 22px 18px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
}

.modal-title {
    margin: 0 0 14px;
    font-size: 22px;
}

.modal-item {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.modal-thumb {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 12px;
}

.modal-item-title {
    font-weight: 700;
}

.modal-item-price {
    opacity: .9;
    margin-top: 2px;
}

.modal-sold {
    margin-top: 4px;
    font-weight: 800;
    letter-spacing: .08em;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

    .modal-grid label {
        display: grid;
        gap: 6px;
        font-size: 13px;
        opacity: .95;
    }

.modal-span {
    grid-column: 1 / -1;
}

.modal-input, .modal-textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.18);
    color: #fff;
}

.modal-textarea {
    min-height: 110px;
    resize: vertical;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.modal-mailto {
    display: inline-block;
    margin-top: 10px;
    opacity: .9;
}


.art-meta {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    opacity: 0.85;
    max-width: 22rem; /* hält den Block kompakt */
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    line-height: 1.3;
    padding: 0.25rem 0;
}

.meta-label {
    font-weight: 500;
    opacity: 0.7;
}

.meta-value {
    font-weight: 400;
    opacity: 0.9;
    text-align: right;
    white-space: nowrap;
}

/* View Counter*/
.views {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .9rem;
    opacity: .8;
    margin-top: .5rem;
}

.views .eye {
    font-size: .95rem;
    line-height: 1;
}


/*new tag */


.gallery-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
/*#b545e6     purple*/
/*#11f211     green*/
.gallery-new {
    color: #b545e6;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.25);
    /*background: rgba(255,255,255,.25);*/
    background: transparent;
    backdrop-filter: blur(6px);
    line-height: 1;
    height: fit-content;
    margin-top: 2px; /* auf Titelhöhe ausrichten */
}


/*#ff3bbf     first try pink*/
/*#d932a2    etwas dunkler*/
/*#9e0b24     red*/

.gallery-new-neon {
    font-family: "Pacifico", "Brush Script MT", cursive; /* falls nicht geladen, nimmt Fallback */
    font-size: 35px;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1;
    transform: rotate(-8deg);
    display: inline-block;
    color: #9e0b24;
    text-shadow: 0 0 3px #ff3bbf, 0 0 8px #ff3bbf, 0 0 16px rgba(255, 59, 191, .9), 0 0 28px rgba(255, 59, 191, .6), 0 0 46px rgba(255, 59, 191, .35);
}
