:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.84);
  --text: #172033;
  --muted: #687386;
  --line: rgba(23, 32, 51, 0.12);
  --accent: #657187;
  --accent-dark: #354055;
  --header-height: 72px;
  --content: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 12px 34px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 28px 80px rgba(16, 24, 40, 0.18);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
  radial-gradient(
    circle at 12% 12%,
    rgba(232, 169, 98, 0.18),
    transparent 34%
  ),
  radial-gradient(
    circle at 88% 30%,
    rgba(90, 119, 155, 0.16),
    transparent 38%
  ),
  radial-gradient(
    circle at 45% 85%,
    rgba(126, 145, 118, 0.12),
    transparent 35%
  ),
  linear-gradient(
    180deg,
    #f6f2ec 0%,
    #eef2f6 45%,
    #e7ebf0 100%
  );


background-attachment: fixed; 
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: rgba(101, 113, 135, 0.24);
}

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

/* Header */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px clamp(20px, 4vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(20, 30, 48, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    min-height 300ms ease,
    padding 300ms ease,
    background 300ms ease,
    box-shadow 300ms ease;
}

.navbar.is-scrolled {
  min-height: 58px;
  padding-block: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(16, 24, 40, 0.09);
}

.logo {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 6px rgba(23, 32, 51, 0.08);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: #2f394d;
  font-size: 0.95rem;
  font-weight: 650;
  transition: color 260ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #111827;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 260ms ease, opacity 260ms ease;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle::after {
  top: 26px;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */

.hero-section {
  --hero-image: url("../images/background_s.png");

  position: relative;
  isolation: isolate;

  width: 100%;
  aspect-ratio: 1672 / 941;
  min-height: 0;

  display: grid;
  place-items: center;

  overflow: hidden;
  background: #152033;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;

  background-image: var(--hero-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  transform: none;
  animation: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(6, 11, 20, 0.02) 0%,
      rgba(6, 11, 20, 0.02) 44%,
      rgba(6, 11, 20, 0.5) 100%
    );
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(to top, rgba(4, 8, 15, 0.44), transparent);
}

.hero-overlay {
  width: min(calc(100% - 32px), 680px);
  margin: 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(12, 20, 34, 0.3);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-kicker,
.hero-text,
.hero-actions {
  opacity: 1;
  transform: none;
}

.hero-kicker {
  animation: heroItemIn 720ms 260ms var(--ease) both;
}

.hero-text {
  animation: heroItemIn 760ms 480ms var(--ease) both;
}

.hero-actions {
  animation: heroItemIn 760ms 700ms var(--ease) both;
}

.hero-kicker {
  margin: 0 0 5px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.94rem, 1.6vw, 1.04rem);
}

.hero-actions {
  margin-top: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* Sections */

main {
  overflow: clip;
}

.section-title {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 118px) 0 clamp(30px, 5vw, 54px);
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

/* Highlight */

.featured-shot {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.82fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.featured-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 850ms var(--ease), filter 600ms ease;
}

.featured-shot:hover .featured-image img {
  transform: scale(1.04);
}

.featured-content {
  align-self: center;
  padding: clamp(30px, 5vw, 66px);
}

.featured-content h3 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.featured-content p {
  margin: 0 0 14px;
  color: var(--muted);
}

.featured-content p:last-child {
  margin-bottom: 0;
}

/* Category cards */

.category-grid {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #182132;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transform-style: preserve-3d;
  transition: transform 420ms ease, box-shadow 420ms ease, opacity 320ms ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(7, 13, 23, 0.9) 0%,
      rgba(7, 13, 23, 0.2) 58%,
      rgba(7, 13, 23, 0.02) 100%
    );
  transition: background 450ms ease;
}

.category-card > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 850ms var(--ease), filter 650ms ease;
}

.category-card:hover {
  box-shadow: var(--shadow-lg);
}

.category-card:hover > img {
  transform: scale(1.075);
  filter: saturate(1.07) contrast(1.04);
}

.category-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  transform: translateY(14px);
  transition: transform 430ms var(--ease);
}

.category-card:hover .category-body {
  transform: translateY(0);
}

.category-body h3 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.category-body p {
  max-width: 50ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

/* Filter */

.gallery-filter {
  width: min(calc(100% - 40px), var(--content));
  margin: -14px auto 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(16, 24, 40, 0.04);
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.filter-button:hover {
  transform: translateY(-2px);
  color: var(--text);
}

.filter-button.is-active {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.category-card.filter-hidden {
  display: none;
}

/* Gallery */

.gallery-grid {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.gallery-item > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 800ms var(--ease), filter 500ms ease;
}

.gallery-item:hover > img {
  transform: scale(1.06);
  filter: brightness(0.78);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 26px 24px;
  color: #fff;
  background: linear-gradient(to top, rgba(7, 13, 23, 0.88), transparent);
  transform: translateY(15px);
  opacity: 0.86;
  transition: transform 420ms var(--ease), opacity 420ms ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item figcaption h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.35;
}

.hidden-gallery {
  display: none;
}

/* Watermark */

.featured-image,
.category-card,
.gallery-item {
  isolation: isolate;
}

.watermark {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

.featured-image .watermark {
  top: auto;
  bottom: 14px;
}

.lightbox-image-wrap {
  position: relative;
  display: inline-flex;
  max-width: 92vw;
  max-height: 85vh;
  overflow: hidden;
  border-radius: 10px;
}

.lightbox-image-wrap .lightbox-img {
  max-width: 100%;
  max-height: 85vh;
}

.lightbox-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;

  width: 145%;
  padding: 12px 20px;

  transform: translate(-50%, -50%) rotate(-24deg);
  transform-origin: center;

  color: rgba(255, 255, 255, 0.56);
  text-align: center;

  font-size: clamp(1rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;

  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);

  pointer-events: none;
  user-select: none;
}

/* Notice */

.protection-box {
  width: min(calc(100% - 40px), 900px);
  margin: clamp(78px, 10vw, 128px) auto;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  text-align: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.protection-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.protection-box p {
  margin: 0;
  color: var(--muted);
}

/* Footer */

footer {
  padding: 42px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #111827;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

footer p {
  margin: 4px 0;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */

.lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 44px);
  background: rgba(4, 8, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(92vw, 1500px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  transform: scale(0.97);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 280ms ease;
}

.lightbox.is-open .lightbox-img {
  transform: scale(1);
  opacity: 1;
}

.lightbox-close,
.lightbox-arrow {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: background 250ms ease, transform 250ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  font-size: 2rem;
}

.lightbox-prev {
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}

.lightbox-next {
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-counter,
.lightbox-caption {
  position: fixed;
  z-index: 2;
  bottom: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

.lightbox-counter {
  left: 22px;
}

.lightbox-caption {
  left: 50%;
  max-width: min(72vw, 760px);
  transform: translateX(-50%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Freiwillige Unterstützung */

.support-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 170px) 24px;
  background: #11161f;
  color: #f4f1eb;
}

.support-section::before {
  content: "SUPPORT";
  position: absolute;
  top: 50%;
  left: 50%;

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

  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(7rem, 23vw, 22rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;

  pointer-events: none;
}

.support-content {
  position: relative;
  z-index: 1;

  width: min(100%, 1050px);
  margin: 0 auto;
}

.support-label {
  margin: 0 0 24px;

  color: #d89555;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.support-content h2 {
  max-width: 900px;
  margin: 0;

  font-size: clamp(2.8rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.support-text {
  max-width: 610px;
  margin: 36px 0 0;

  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  margin-top: 38px;
  padding: 16px 22px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;

  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;

  transition:
    background 250ms ease,
    color 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.support-button span {
  font-size: 1.25rem;
  transition: transform 250ms ease;
}

.support-button:hover {
  border-color: #d89555;
  background: #d89555;
  color: #11161f;
  transform: translateY(-3px);
}

.support-button:hover span {
  transform: translate(4px, -4px);
}

.support-note {
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* Animations */

@keyframes heroItemIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

/* Responsive */

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px clamp(20px, 4vw, 60px) 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.1);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 260ms ease, opacity 260ms ease, visibility 260ms ease;
  }

  .navbar.menu-open .nav-list {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    display: block;
    padding: 13px 0;
  }

  .featured-shot {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 380px;
  }

  .hero-overlay {
    border-radius: var(--radius-md);
  }
}

@media (max-width: 720px) {
  .category-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card > img {
    min-height: 360px;
  }

  .section-title,
  .featured-shot,
  .category-grid,
  .gallery-grid,
  .gallery-filter,
  .protection-box {
    width: min(calc(100% - 28px), var(--content));
  }
.hero-overlay {
    display: none;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-caption {
    bottom: 72px;
    max-width: calc(100vw - 36px);
  }
}

@media (hover: none) {
  .category-body,
  .gallery-item figcaption {
    transform: none;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-kicker,
  .hero-text,
  .hero-actions {
    opacity: 1;
    transform: none;
  }
}

/* Hauptbilder sicher anklickbar machen */

.category-card > img.zoomable {
  position: relative;
  z-index: 2;
  cursor: zoom-in;
  pointer-events: auto;
}

.category-card::before,
.category-card::after,
.category-card .watermark {
  pointer-events: none;
}

/* Halbtransparente Textbox auf den großen Karten */

.category-body {
  right: auto;
  bottom: 24px;
  left: 24px;

  width: auto;
  max-width: calc(100% - 48px);

  padding: 18px 22px;
  border-radius: 16px;

  background: rgba(0, 0, 0, 0.48);
  color: #fff;

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

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.category-body h3 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.category-body p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}


/* Alle sichtbaren vergrößerbaren Bilder anklickbar */

.zoomable:not(.hidden-album) {
  position: relative;
  z-index: 2;
  cursor: zoom-in;
  pointer-events: auto;
}

.featured-image .watermark,
.gallery-item .watermark,
.category-card .watermark {
  pointer-events: none;
}