/* 1. Schriftart Silence Rocken einbinden */
@font-face {
  font-family: "Silence Rocken";
  src: url("Font/SilenceRocken.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 2. Design-Variablen (Farben etc.) */
:root {
  --bg-page: #FFF8F2;
  --bg-section:#ffffff; 
  --bg-lilac-soft: #F1E3EC;
  --bg-lilac-strong: #E8D4E0;

  --accent: #9B7399;

  --text-main: #6B4D69;
  --text-muted: #9F829E;
  --text-on-accent: #FFFFFF;

  --border-soft: #E4D3E0;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(80, 58, 88, 0.15);
}

/* 3. Reset / Basis */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px; /* Basis für mobile Lesbarkeit */
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 3rem 1.25rem 4rem;
}

.content-shell {
  max-width: 1120px;
  margin: 0 auto;
}

/* 4. Überschriften */

h1, h2, .section-title {
  font-family: "Silence Rocken", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--accent);
}

h3 {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--accent);
}

.section-title {
  font-size: 2.5rem;
}

.section-subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* 5. Sections / Karten */

.section {
  margin-bottom: 2.75rem;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--bg-section);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* 6. Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(155, 115, 153, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
  background: var(--bg-lilac-soft);
}

/* 7. HERO / STARTSEITE */

.hero {
  position: relative;
  height: 100vh;
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-inner {
  max-width: 720px;
  background: #FFFFFFE6;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 2rem;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  background: var(--bg-lilac-soft);
  border: 1px solid var(--border-soft);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin-bottom: 0.7rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.hero-meta {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.7rem;
}

.hero-meta span::before {
  content: "• ";
  color: var(--border-soft);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: #ffffff;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

/* 8. ALBEN */

/* Mobile-first: erst 1 Spalte, ab bestimmter Breite mehr */
.album-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Ab ~640px (Tablet quer / kleiner Laptop) mehrere Spalten */
@media (min-width: 640px) {
  .album-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
}

.album-card {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.album-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(155, 115, 153, 0.24);
}

.album-thumb {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.album-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.album-card:hover .album-thumb img {
  transform: scale(1.05);
}

.album-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-soft);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-main);
}

.album-meta-icon {
  font-size: 0.8rem;
}

.album-body {
  padding: 0.8rem 0.9rem 0.9rem;
}

.album-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.album-info {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
}

.album-pill {
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--bg-lilac-soft);
  border: 1px solid var(--border-soft);
  font-size: 0.75rem;
  color: var(--accent);
}

/* 9. VIDEOS */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.video-card {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.video-card h3 {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.video-card p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* 10. BUCKETLIST + Spalten */

.bucketlist-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bucketlist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.bucketlist-heading {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.bucket-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: var(--bg-page);
  border: 1px solid var(--border-soft);
}

.bucket-item.done {
  background: var(--bg-lilac-soft);
  border-color: var(--bg-lilac-strong);
}

.bucket-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.85rem;
  color: #22c55e;
}

.bucket-item.done .bucket-check {
  border-color: #22c55e;
  background: #bbf7d0;
}

.bucket-content {
  flex: 1;
}

.bucket-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.bucket-meta {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.bucket-status-pill {
  font-size: 0.78rem;
  padding: 0.05rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #f9fafb;
  color: #111827;
}

.bucket-item.done .bucket-status-pill {
  border-color: #22c55e;
  background: #bbf7d0;
  color: #14532d;
}

/* 11. ALBUM-ÜBERSICHT (Overlay) */

.album-overview {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.album-overview.visible {
  display: flex;
}

.album-overview-backdrop,
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.album-overview-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  margin: 0 auto;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.album-overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.album-overview-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.album-overview-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.album-overview-close {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #374151;
}

.album-overview-close:hover {
  background: #f3f4f6;
}

/* Mobile-first: 1 Spalte, große Thumbs */
.album-overview-grid {
  flex: 1;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  padding-top: 0.3rem;
}

.album-overview-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-soft);
  background: #f3f4f6;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  min-height: 190px; /* Handy: schön groß */
}

.album-overview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ab ~768px: mehrere Spalten (Tablet/Laptop) */
@media (min-width: 768px) {
  .album-overview-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
  }

  .album-overview-thumb {
    min-height: 0; /* Desktop wieder flexibler */
  }
}


.album-overview-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-soft);
  background: #f3f4f6;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.album-overview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-overview-thumb:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}

.album-overview-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #4b5563;
}

.album-overview-page-btn {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  cursor: pointer;
  font-size: 0.8rem;
}

.album-overview-page-btn[disabled] {
  opacity: 0.4;
  cursor: default;
}

.album-overview-page-info {
  font-size: 0.82rem;
}

/* 12. LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.visible {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
}

.lightbox-content {
  position: relative;
  max-width: min(960px, 94vw);
  max-height: 90vh;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.45);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  z-index: 1;
}

/* Header mit Titel + Counter links, Download + Close rechts */

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-header-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lightbox-header-title {
  font-size: 0.98rem;
  font-weight: 500;
}

.lightbox-header-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.lightbox-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lightbox-close-btn {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: #374151;
}

.lightbox-close-btn:hover {
  background: #f3f4f6;
}

.lightbox-download {
  background: rgba(17, 24, 39, 0.9);
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #f9fafb;
  text-decoration: none;
}

/* Main-Bereich: Bild oben, Caption, Filmstreifen */

.lightbox-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 260px;
}

/* Bild-Wrapper: immer zentriert, Hochkant & Querformat schön */

.lightbox-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border-radius: 10px;
  overflow: hidden;
  height: 70vh;           /* Desktop */
}

.lightbox-image-wrapper img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  animation: lightbox-fadein 0.15s ease-out;
}

@keyframes lightbox-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Dezente Pfeile */
.lightbox-nav-btn {
  background: rgba(17, 24, 39, 0.35);
  border: none;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: 
    opacity 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease;
  opacity: 0.6;
}

/* Hover / Fokus */
.lightbox-nav-btn:hover,
.lightbox-nav-btn:focus-visible {
  background: rgba(17, 24, 39, 0.65);
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile: etwas sichtbarer, da kein Hover */
@media (max-width: 768px) {
  .lightbox-nav-btn {
    opacity: 0.75;
  }
}
.lightbox-fullscreen-btn {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #374151;
}

.lightbox-fullscreen-btn:hover {
  background: #f3f4f6;
}

.lightbox-image-wrapper {
  height: 70vh;
}

@media (max-width: 768px) {
  .lightbox-image-wrapper {
    height: 82vh;
  }
}


/* Navigation: mittig links/rechts, überdeckt nicht den Filmstreifen */

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 24, 39, 0.85);
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #f9fafb;
}

.lightbox-nav-btn-left {
  left: 0.75rem;
}

.lightbox-nav-btn-right {
  right: 0.75rem;
}

/* Caption + Thumbs */

.lightbox-caption {
  color: var(--text-main);
  font-size: 0.9rem;
  min-height: 1.4em;
}

.lightbox-thumbs-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lightbox-thumbs-label {
  font-size: 0.78rem;
  color: #6b7280;
}

.thumb-strip {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.thumb-strip::-webkit-scrollbar {
  height: 6px;
}

.thumb-strip::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.thumb {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  background: #f3f4f6;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active {
  border-color: var(--accent);
}

.lightbox-counter {
  color: var(--text-muted);
}

/* Mobile-Tweaks */

@media (max-width: 768px) {
  .lightbox-content {
    max-height: 96vh;
    padding: 0.75rem;
  }

  .lightbox-image-wrapper {
    height: 78vh;  /* Hochkant-Fotos werden größer */
  }

  .lightbox-header {
    align-items: flex-start;
  }

  .lightbox-header-meta {
    font-size: 0.78rem;
  }

  .lightbox-download {
    padding-inline: 0.6rem;
  }
}
/* Mobile-Basis: Layout & Text für Handy/Tablet */
@media (max-width: 768px) {
  /* Grundschrift etwas größer / lesbarer */
  body {
    font-size: 16px;
  }

  main {
    padding: 2.25rem 1rem 3rem;
  }

  .section {
    padding: 1.6rem 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-inner {
    padding: 1.8rem 1.3rem;
  }

  /* Albumkarten auf der Startseite: 1 Spalte auf Handy/kleinen Tablets */
  .album-grid {
    grid-template-columns: 1fr;
  }

  /* Bucketlist-Spalten untereinander */
  .bucketlist-columns {
    grid-template-columns: 1fr;
  }

  /* Lightbox-Anpassungen */
  .lightbox-content {
    max-height: 96vh;
    padding: 0.75rem;
  }

  .lightbox-image-wrapper {
    height: 70vh;   /* genug Platz fürs Bild, Thumbnails bleiben sichtbar */
  }

  .lightbox-header-meta {
    font-size: 0.78rem;
  }

  .lightbox-download {
    padding-inline: 0.6rem;
  }
}
/* Kleine Smartphones: Album-Übersicht einspaltig, große Thumbs */
@media (max-width: 600px) {
  .album-overview-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .album-overview-thumb {
    min-height: 190px;
  }

  /* Überschriften & Untertitel etwas größer lesbar */
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 0.95rem;
  }
}

/* Handy-/Tablet-Feintuning */
@media (max-width: 768px) {
  .hero-inner {
    padding: 1.8rem 1.3rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  main {
    padding: 2.25rem 1rem 3rem;
  }

  .section {
    padding: 1.6rem 1.2rem;
  }
}
/* --- CINEMATIC LIGHTBOX UPGRADES --- */

/* UI-Wrapper: kann ausblenden */
.lightbox-ui {
  transition: opacity 0.25s ease;
}

.lightbox-ui.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Optional: wenn UI weg ist, Cursor verstecken (Desktop nice) */
.lightbox-content.ui-hidden {
  cursor: none;
}

/* Tap-Zonen: unsichtbar, aber große Touchflächen */
.tap-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32%;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2; /* unter den Pfeilen, über dem Bild */
}

.tap-zone-left { left: 0; }
.tap-zone-right { right: 0; }

/* Pfeile: unscheinbarer */
.lightbox-nav-btn {
  z-index: 3;
  background: rgba(17, 24, 39, 0.25);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  opacity: 0.55;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.lightbox-nav-btn:hover,
.lightbox-nav-btn:focus-visible {
  opacity: 1;
  background: rgba(17, 24, 39, 0.55);
  transform: scale(1.05);
}

/* Auf Mobile: Pfeile standardmäßig etwas präsenter */
@media (max-width: 768px) {
  .lightbox-nav-btn { opacity: 0.75; }
}

/* Bild zentriert lassen, Hochkant größer wirken */
.lightbox-image-wrapper {
  position: relative;
  height: 70vh;
}

@media (max-width: 768px) {
  .lightbox-image-wrapper { height: 82vh; }
}
/* =========================
   PURE PHOTO FULLSCREEN MODE
   ========================= */

html.fullscreen-photo body {
  background: #000;
}

/* Alles außer dem Bild ausblenden */
html.fullscreen-photo .lightbox-header,
html.fullscreen-photo .lightbox-thumbs-block,
html.fullscreen-photo .lightbox-caption,
html.fullscreen-photo .lightbox-counter,
html.fullscreen-photo .lightbox-download {
  display: none !important;
}

/* Lightbox nimmt den ganzen Screen */
html.fullscreen-photo .lightbox-content {
  max-width: none;
  max-height: none;
  width: 100vw;
  height: 100vh;
  padding: 0;
  border-radius: 0;
  background: #000;
}

/* Bild zentriert & maximal groß */
html.fullscreen-photo .lightbox-image-wrapper {
  height: 100vh;
  background: #000;
}

html.fullscreen-photo .lightbox-image-wrapper img {
  max-width: 100vw;
  max-height: 100vh;
}

/* Pfeile extrem dezent */
html.fullscreen-photo .lightbox-nav-btn {
  opacity: 0.35;
  background: rgba(0,0,0,0.4);
}

html.fullscreen-photo .lightbox-nav-btn:hover {
  opacity: 0.7;
}
/* =========================
   FULLSCREEN: NUR FOTO
   ========================= */

html.fullscreen-photo .lightbox-backdrop {
  background: #000;
}

/* Alles UI weg */
html.fullscreen-photo .lightbox-header,
html.fullscreen-photo .lightbox-caption,
html.fullscreen-photo .lightbox-thumbs-block {
  display: none !important;
}

/* Lightbox-Container "unsichtbar machen", aber Bildbereich bleibt */
html.fullscreen-photo .lightbox-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
}

/* Foto soll maximal groß werden */
html.fullscreen-photo .lightbox-main {
  gap: 0;
}

html.fullscreen-photo .lightbox-image-wrapper {
  height: 100vh;
  border-radius: 0;
}

/* Pfeile dezent + immer gleich positioniert */
html.fullscreen-photo .lightbox-nav-btn {
  opacity: 0.35;
  transition: opacity 0.15s ease;
}

html.fullscreen-photo .lightbox-nav-btn:hover {
  opacity: 0.7;
}

/* Optional: auf Touch etwas stärker sichtbar */
@media (hover: none) {
  html.fullscreen-photo .lightbox-nav-btn {
    opacity: 0.55;
  }
}
/* verhindert Hintergrund-Scroll wenn "Pseudo-Fullscreen" aktiv */
.no-scroll {
  overflow: hidden;
}

/* Pseudo-Fullscreen: nur Foto, alles andere weg */
.fullscreen-photo .lightbox-backdrop {
  background: #000; /* kein dunkler Schleier, sondern richtig "Foto-Modus" */
}

.fullscreen-photo .lightbox-content {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border-radius: 0;
  border: 0;
  padding: 0;
  background: #000;
}

/* Alles außer Bildbereich ausblenden */
.fullscreen-photo .lightbox-header,
.fullscreen-photo .lightbox-caption,
.fullscreen-photo .lightbox-thumbs-block {
  display: none !important;
}

/* Bildfläche füllt den Viewport */
.fullscreen-photo .lightbox-image-wrapper {
  height: 100vh;
  border-radius: 0;
}
