/* Carving-Plattform — Erdtoene & Holz-Aesthetik */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700;800&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
    --braun-dunkel: #3E2723;
    --braun: #5D4037;
    --braun-hell: #8D6E63;
    --beige: #EFEBE9;
    --beige-hell: #FAF8F6;
    --gruen-dunkel: #2E4A3E;
    --gruen: #4A6B5D;
    --akzent: #A1887F;
    --text: #3E2723;
    --text-muted: #795548;
    --warm-gold: #C9A96E;
    --warm-cream: #F5EDE0;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    background-color: var(--beige-hell);
    color: var(--text);
    padding-top: 70px;
}

/* Navbar */
.navbar {
    background-color: var(--braun-dunkel) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--beige) !important;
}

.navbar .nav-link {
    color: var(--beige) !important;
    transition: color 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--akzent) !important;
}

/* Cards */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* Buttons */
.btn-holz {
    background-color: var(--braun);
    border-color: var(--braun);
    color: #fff;
}

.btn-holz:hover {
    background-color: var(--braun-dunkel);
    border-color: var(--braun-dunkel);
    color: #fff;
}

.btn-gruen {
    background-color: var(--gruen);
    border-color: var(--gruen);
    color: #fff;
}

.btn-gruen:hover {
    background-color: var(--gruen-dunkel);
    border-color: var(--gruen-dunkel);
    color: #fff;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--braun-dunkel), var(--gruen-dunkel));
    color: var(--beige);
    padding: 4rem 0;
    border-radius: 0 0 24px 24px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Kategorie-Kacheln */
.kategorie-kachel {
    background: linear-gradient(135deg, var(--braun), var(--braun-hell));
    color: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s;
    text-decoration: none;
    display: block;
}

.kategorie-kachel:hover {
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

/* Badges */
.badge-featured {
    background-color: var(--akzent);
    color: #fff;
}

.badge-highlight {
    background-color: var(--gruen);
    color: #fff;
}

/* Karte */
#map {
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Footer */
.footer {
    background-color: var(--braun-dunkel);
    color: var(--beige);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer a {
    color: var(--akzent);
}

/* Formulare */
.form-control:focus {
    border-color: var(--braun-hell);
    box-shadow: 0 0 0 0.2rem rgba(141, 110, 99, 0.25);
}

/* Nachrichten-Badge */
.nachrichten-badge {
    position: relative;
    top: -8px;
    font-size: 0.7rem;
}

/* Pagination */
.page-link {
    color: var(--braun);
}

.page-item.active .page-link {
    background-color: var(--braun);
    border-color: var(--braun);
}

/* ===========================
   HOMEPAGE — Hero (redesigned)
   =========================== */
.hero-home {
    position: relative;
    background:
        linear-gradient(160deg, rgba(26,14,8,0.88) 0%, rgba(62,39,35,0.78) 30%, rgba(42,26,18,0.82) 55%, rgba(46,74,62,0.75) 100%),
        var(--hero-bg, url('/assets/img/hero-bg.jpg')) center/cover no-repeat;
    padding: 3rem 0 4rem;
    margin-top: -1rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

.hero-home__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(201,169,110,0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 20%, rgba(74,107,93,0.22) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(201,169,110,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-home__grain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.7;
}

/* Holzmaserung-Effekt */
.hero-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        92deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.015) 40px,
        rgba(255,255,255,0.015) 41px
    );
    pointer-events: none;
}

.hero-home__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-home__wave svg {
    width: 100%;
    height: 50px;
    display: block;
}

/* Hero Badge */
.hero-home__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gold);
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.25);
    margin-bottom: 1.25rem;
}

.hero-home__badge i {
    font-size: 0.9rem;
}

.hero-home__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    line-height: 1.1;
    color: var(--warm-cream);
    margin-bottom: 1.25rem;
}

.hero-home__title-accent {
    background: linear-gradient(135deg, var(--warm-gold), #e0c683);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-home__text {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(239,235,233,0.8);
    max-width: 520px;
}

.min-vh-50 { min-height: 50vh; }

/* Hero Buttons */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--warm-gold), #b8944f);
    border: none;
    color: var(--braun-dunkel);
    font-weight: 600;
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.5);
    color: var(--braun-dunkel);
    background: linear-gradient(135deg, #d4b574, var(--warm-gold));
}

.btn-hero-outline {
    border: 2px solid rgba(239,235,233,0.35);
    color: var(--warm-cream);
    padding: 0.8rem 2.2rem;
    border-radius: 10px;
    transition: all 0.3s;
    background: transparent;
}

.btn-hero-outline:hover {
    border-color: var(--warm-cream);
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* Hero Visual — animated rings */
.hero-home__visual {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-home__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.2);
}

.hero-home__ring--outer {
    width: 260px;
    height: 260px;
    animation: ring-spin 30s linear infinite;
    border-style: dashed;
    border-width: 1px;
}

.hero-home__ring--inner {
    width: 170px;
    height: 170px;
    animation: ring-spin 20s linear infinite reverse;
    border-color: rgba(201,169,110,0.15);
    border-style: dotted;
}

.hero-home__center-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201,169,110,0.1); }
    50% { box-shadow: 0 0 40px rgba(201,169,110,0.2); }
}

/* Floating Stats around ring */
.hero-home__float-stat {
    position: absolute;
    background: rgba(30,18,10,0.85);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    text-align: center;
    backdrop-filter: blur(8px);
    z-index: 3;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-home__float-stat:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(201,169,110,0.15);
}

.hero-home__float-stat--tl { top: 10px; left: 0; }
.hero-home__float-stat--tr { top: 10px; right: 0; }
.hero-home__float-stat--bl { bottom: 10px; left: 0; }
.hero-home__float-stat--br { bottom: 10px; right: 0; }

.hero-home__stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--warm-gold);
    line-height: 1.1;
}

.hero-home__stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(239,235,233,0.5);
    margin-top: 0.15rem;
    display: block;
}

/* Hero Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out both;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out both;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   HOMEPAGE — Feature Tiles
   =========================== */
.feature-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 2rem 1rem 1.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-tile__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-tile:hover .feature-tile__glow {
    opacity: 1;
}

.feature-tile__hint {
    font-size: 0.72rem;
    font-weight: 400;
    opacity: 0.65;
    letter-spacing: 0.02em;
}

.feature-tile i {
    font-size: 2rem;
    transition: transform 0.3s;
}

.feature-tile:hover i {
    transform: scale(1.2) rotate(-3deg);
}

.feature-tile:hover {
    transform: translateY(-5px);
}

.feature-tile--galerie {
    background: linear-gradient(145deg, #5D4037, #4E342E);
    color: var(--warm-cream);
    box-shadow: 0 4px 20px rgba(93,64,55,0.3);
}
.feature-tile--galerie:hover { color: #fff; box-shadow: 0 8px 30px rgba(93,64,55,0.4); }

.feature-tile--shop {
    background: linear-gradient(145deg, var(--gruen), var(--gruen-dunkel));
    color: var(--warm-cream);
    box-shadow: 0 4px 20px rgba(46,74,62,0.3);
}
.feature-tile--shop:hover { color: #fff; box-shadow: 0 8px 30px rgba(46,74,62,0.4); }

.feature-tile--kurse {
    background: linear-gradient(145deg, var(--warm-gold), #a8873e);
    color: var(--braun-dunkel);
    box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.feature-tile--kurse:hover { color: var(--braun-dunkel); box-shadow: 0 8px 30px rgba(201,169,110,0.4); }

.feature-tile--zubehoer {
    background: linear-gradient(145deg, var(--braun-hell), #6D4C41);
    color: var(--warm-cream);
    box-shadow: 0 4px 20px rgba(141,110,99,0.3);
}
.feature-tile--zubehoer:hover { color: #fff; box-shadow: 0 8px 30px rgba(141,110,99,0.4); }

/* ===========================
   HOMEPAGE — Section Headers
   =========================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--beige);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--braun-dunkel);
    margin-bottom: 0.15rem;
}

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

/* ===========================
   HOMEPAGE — Werk Cards
   =========================== */
.werk-card {
    display: block;
    text-decoration: none;
    color: var(--text);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: all 0.3s;
}

.werk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    color: var(--text);
}

.werk-card__img {
    height: 180px;
    overflow: hidden;
}

.werk-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.werk-card:hover .werk-card__img img {
    transform: scale(1.08);
}

.werk-card__placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    color: var(--braun-hell);
    font-size: 2.5rem;
}

.werk-card__body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.werk-card__body strong {
    font-size: 0.85rem;
    line-height: 1.3;
}

.werk-card__body small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.werk-card__price {
    font-weight: 600;
    color: var(--gruen);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* ===========================
   HOMEPAGE — Content Panels (Kurse/Termine)
   =========================== */
.content-panel {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    overflow: hidden;
}

.content-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--braun-dunkel), #4a3228);
    color: var(--warm-cream);
}

.content-panel__header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.content-panel__header h3 i {
    margin-right: 0.4rem;
    color: var(--warm-gold);
}

.content-panel__header a {
    color: var(--warm-gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.content-panel__header a:hover {
    color: #fff;
}

/* Event Rows */
.event-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--beige);
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
}

.event-row:last-child {
    border-bottom: none;
}

.event-row:hover {
    background: var(--beige-hell);
    color: var(--text);
}

.event-row__date {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--beige);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.event-row__day {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--braun-dunkel);
}

.event-row__month {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.event-row__info {
    flex: 1;
    min-width: 0;
}

.event-row__info strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
}

.event-row__info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.event-row__badge {
    flex-shrink: 0;
    background: var(--gruen);
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===========================
   HOMEPAGE — How it works
   =========================== */
.how-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.how-step__number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--warm-gold);
    color: var(--braun-dunkel);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(201,169,110,0.3);
}

.how-step__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--beige);
    color: var(--braun);
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.3s, color 0.3s;
}

.how-step:hover .how-step__icon {
    background: var(--braun);
    color: var(--warm-cream);
}

.how-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--braun-dunkel);
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===========================
   HOMEPAGE — Empty Showcase
   =========================== */
.empty-showcase {
    text-align: center;
    padding: 3.5rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 2px dashed var(--beige);
}

.empty-showcase__icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 2.5rem;
    color: var(--braun-hell);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.empty-showcase h3 {
    font-size: 1.3rem;
    color: var(--braun-dunkel);
    margin-bottom: 0.5rem;
}

.empty-showcase p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ===========================
   HOMEPAGE — Quote Section
   =========================== */
.quote-section {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.quote-section__inner {
    background: linear-gradient(135deg, var(--beige) 0%, var(--warm-cream) 100%);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.quote-section__icon {
    margin-bottom: 1rem;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 500;
    font-style: italic;
    color: var(--braun-dunkel);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

/* ===========================
   HOMEPAGE — CTA Register
   =========================== */
.cta-register {
    border-radius: 16px;
    overflow: hidden;
}

.cta-register__inner {
    background: linear-gradient(135deg, var(--braun-dunkel) 0%, #2a1a12 50%, var(--gruen-dunkel) 100%);
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-register__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(201,169,110,0.15), transparent 60%);
    pointer-events: none;
}

.cta-register__decoration {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
    pointer-events: none;
}

.cta-register h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--warm-cream);
    margin-bottom: 0.75rem;
}

.cta-register p {
    color: rgba(239,235,233,0.75);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

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

.cta-register__features span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--warm-gold);
}

.cta-register__features i {
    font-size: 0.9rem;
}

/* ===========================
   HOMEPAGE — Schnitzer Cards
   =========================== */
.schnitzer-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    height: 100%;
}

.schnitzer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    color: var(--text);
}

.schnitzer-card__avatar {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--braun-hell);
}

.schnitzer-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schnitzer-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.schnitzer-card__info strong {
    font-size: 1rem;
    color: var(--braun-dunkel);
}

.schnitzer-card__info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.schnitzer-card__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0.3rem 0 0;
}

/* CTA Register breakout */
.cta-register {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
}

/* ===========================
   Navbar Brand — Playfair
   =========================== */
.navbar-brand {
    font-family: 'Playfair Display', serif !important;
}

/* ===========================
   Section titles global
   =========================== */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ===========================
   GALERIE
   =========================== */
.kategorie-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.kategorie-chip {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--braun);
    background: var(--beige);
    border: 1px solid transparent;
    transition: all 0.2s;
}

.kategorie-chip:hover {
    background: var(--braun-hell);
    color: #fff;
}

.kategorie-chip--active {
    background: var(--braun-dunkel);
    color: var(--warm-cream);
}

.kategorie-chip--active:hover {
    background: var(--braun);
    color: #fff;
}

.galerie-img {
    height: 220px;
    position: relative;
}

.werk-card__badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.werk-card__badge--highlight {
    background: var(--warm-gold);
    color: var(--braun-dunkel);
}

.werk-card__badge--featured {
    background: var(--gruen);
    color: #fff;
}

.galerie-leer__icon {
    font-size: 4rem;
    color: var(--braun-hell);
    margin-bottom: 1rem;
    opacity: 0.5;
}
