@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

/* ==========================================================================
   Schork Lichtobjekte - Avantgarde Floating Glass Design System (v8 Large Filters)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root & Color Variables (Deep Electric Blue Theme)
   -------------------------------------------------------------------------- */
:root {
  --bg-pure-black: #000000;
  --bg-dark-space: #03060a;
  --bg-glass-card: rgba(8, 14, 24, 0.76);
  --bg-glass-card-hover: rgba(12, 22, 38, 0.92);
  --glass-border: rgba(0, 119, 255, 0.22);
  --glass-border-hover: rgba(0, 140, 255, 0.65);

  --accent-blue: #0077FF;
  --accent-blue-bright: #4DA6FF;
  --accent-blue-dim: rgba(0, 119, 255, 0.16);
  --accent-blue-glow: 0 0 22px rgba(0, 119, 255, 0.4);

  --text-main: #FFFFFF;
  --text-muted: #CBD5E1;
  --text-dimmed: #78869A;

  --container-max-width: 1600px;
  --sidebar-width: 300px;
  --sidebar-inset: 1.5rem;

  --font-heading: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* --------------------------------------------------------------------------
   2. Global Resets & Space Theme
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-pure-black);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(0, 102, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(0, 80, 220, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(4, 9, 18, 0.96) 0%, var(--bg-pure-black) 100%);
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #020408;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 119, 255, 0.35);
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
  box-shadow: var(--accent-blue-glow);
}

a {
  color: var(--accent-blue-bright);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 12px rgba(0, 119, 255, 0.6);
}

/* Flexbox Grid Column Stretch */
.row>[class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   2b. Animierte Lichteffekte im Hintergrund (Floating Ambient Blue Orbs)
   -------------------------------------------------------------------------- */
@keyframes ambientPulseOne {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.14;
  }

  50% {
    transform: translate(40px, -30px) scale(1.18);
    opacity: 0.26;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.14;
  }
}

@keyframes ambientPulseTwo {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.12;
  }

  50% {
    transform: translate(-45px, 25px) scale(1.15);
    opacity: 0.24;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.12;
  }
}

.ambient-orb-1 {
  position: fixed;
  top: 8%;
  left: 12%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.24) 0%, transparent 70%);
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulseOne 14s ease-in-out infinite;
}

.ambient-orb-2 {
  position: fixed;
  bottom: 12%;
  right: 12%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 140, 255, 0.2) 0%, transparent 70%);
  filter: blur(75px);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulseTwo 18s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   3. Centered Site Container (Zentriertes Layout mit Seitenabständen)
   -------------------------------------------------------------------------- */
.site-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

/* --------------------------------------------------------------------------
   4. Prominente Freischwebende Licht-Sidebar (Desktop)
   -------------------------------------------------------------------------- */
.floating-sidebar {
  position: fixed;
  top: 1.5rem;
  left: max(1.5rem, calc((100% - var(--container-max-width)) / 2 + 1.5rem));
  bottom: 1.5rem;
  width: var(--sidebar-width);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  background: rgba(6, 11, 19, 0.88);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 119, 255, 0.12);
  padding: 1.75rem 1.15rem;
  transition: all 0.3s ease;
}

.sidebar-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(0, 119, 255, 0.18);
  position: relative;
}

.sidebar-brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-brand-title span.glow-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 12px var(--accent-blue);
}

.sidebar-brand-subtitle {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-blue-bright);
  margin-top: 0.35rem;
  font-weight: 700;
  opacity: 0.95;
}

/* Nav Menu Links - PROMINENT & GUT LESBAR */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav-item {
  position: relative;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  padding: 0.7rem 0.85rem;
  color: #E2E8F0;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.48;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sidebar-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: var(--accent-blue);
  border-radius: 0;
  opacity: 0;
  transform: scaleY(0.3);
  transition: all 0.22s ease;
  box-shadow: 0 0 10px var(--accent-blue);
}

.sidebar-nav-link:hover {
  color: #FFFFFF;
  background: rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.3);
  transform: translateX(4px);
}

.sidebar-nav-link:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.sidebar-nav-link.active {
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.28) 0%, rgba(0, 119, 255, 0.06) 100%);
  border-color: rgba(0, 119, 255, 0.48);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45), inset 0 0 15px rgba(0, 119, 255, 0.16);
  font-weight: 600;
}

.sidebar-nav-link.active::before {
  opacity: 1;
  transform: scaleY(1);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(0, 119, 255, 0.14);
  font-size: 0.78rem;
  color: var(--text-dimmed);
}

.sidebar-footer a {
  color: var(--text-muted);
}

.sidebar-footer a:hover {
  color: var(--accent-blue-bright);
}

/* --------------------------------------------------------------------------
   5. Mobile Header & Offcanvas Glass Drawer
   -------------------------------------------------------------------------- */
.mobile-glass-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(8, 14, 24, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  border-radius: 0;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.mobile-toggle-btn {
  background: rgba(0, 119, 255, 0.16);
  border: 1px solid var(--glass-border);
  color: var(--accent-blue-bright);
  border-radius: 0;
  padding: 0.4rem 0.75rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-toggle-btn:hover {
  background: var(--accent-blue);
  color: #FFF;
  box-shadow: var(--accent-blue-glow);
}

/* Offcanvas Drawer Mobile Overlay */
.glass-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 290px;
  z-index: 1060;
  background: rgba(5, 9, 16, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-right: 1px solid var(--glass-border);
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.9);
}

.glass-offcanvas.show {
  transform: translateX(0);
}

.glass-offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1055;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
}

.glass-offcanvas-backdrop.show {
  display: block;
}

/* --------------------------------------------------------------------------
   6. Main Content Area Layout (Eingepasst im Container)
   -------------------------------------------------------------------------- */
.main-content {
  margin-left: calc(var(--sidebar-width) + 2.5rem);
  padding: 2.25rem 0 4rem 0;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .floating-sidebar {
    display: none;
  }

  .mobile-glass-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-content {
    margin-left: 0;
    padding: 4.25rem 0 3rem 0;
  }
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero-compact {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 16, 28, 0.75) 0%, rgba(4, 8, 15, 0.9) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  padding: 2.75rem 3rem;
  margin-bottom: 2.75rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-compact::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(35px);
}

.glow-dot {
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background-color: #38bdf8 !important;
  box-shadow: 0 0 8px #38bdf8, 0 0 14px #0077ff !important;
  flex-shrink: 0;
  vertical-align: middle;
}

.hero-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: flex-start !important;
  width: fit-content !important;
  max-width: max-content !important;
  gap: 0.55rem;
  padding: 0.55rem 1.3rem 0.55rem 1.15rem;
  background: rgba(0, 119, 255, 0.14);
  border: 1px solid rgba(0, 140, 255, 0.35);
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 119, 255, 0.15);
  line-height: 1;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 35px rgba(0, 119, 255, 0.35);
}

.hero-title-main {
  font-size: 3.2rem;
  line-height: 1.1;
  text-shadow: 0 0 35px rgba(0, 119, 255, 0.45);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--accent-blue-bright);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(77, 166, 255, 0.35);
}

.hero-text {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 700px;
  line-height: 1.65;
  margin-bottom: 0;
}

.hero-image-box {
  background: rgba(7, 13, 22, 0.82);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75), 0 0 18px rgba(0, 119, 255, 0.18);
}

.hero-image-box .glass-card-img-wrapper {
  height: 440px !important;
  max-height: 440px !important;
  aspect-ratio: auto !important;
  border-radius: 0;
}

.hero-image-box .glass-card-img {
  height: 520px !important;
  width: 100%;
  object-fit: cover;
  object-position: top;
  margin-top: -80px;
}

.hero-image-box:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 119, 255, 0.32);
}

/* --------------------------------------------------------------------------
   8. Sub-Navigation (Filter Pills Band - GROESSER & PROMINENTER)
   -------------------------------------------------------------------------- */
.pill-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(7, 12, 20, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  padding: 0.85rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.filter-label {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--accent-blue-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.filter-label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-blue);
}

.pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #E2E8F0;
  padding: 0.55rem 1.25rem;
  border-radius: 0;
  font-size: 0.95rem;
  /* Vergrößerter Filter-Button */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
}

.pill-btn:hover {
  background: rgba(0, 119, 255, 0.18);
  border-color: rgba(0, 119, 255, 0.5);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 119, 255, 0.25);
}

.pill-btn.active {
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.32) 0%, rgba(0, 119, 255, 0.18) 100%);
  border-color: var(--accent-blue-bright);
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(0, 119, 255, 0.45);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. Glass Cards
   -------------------------------------------------------------------------- */
.glass-card {
  position: relative;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: max-content;
  width: 100%;
}

.impressum-card {
  padding: 1.25rem 1.25rem;
  height: auto !important;
  min-height: max-content;
}

@media (min-width: 768px) {
  .impressum-card {
    padding: 1.75rem 2rem;
  }
}

.glass-card:hover {
  transform: translateY(-4px) scale(1.01);
  background: var(--bg-glass-card-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 22px rgba(0, 119, 255, 0.3);
}

.glass-card-img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
  aspect-ratio: 16 / 10;
  height: 195px;
  max-height: 195px;
}

/* Lichtstrahl-Overlay auf Card-Bildern */
.glass-card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(0, 8, 50, 0.48) 0%,
    rgba(0, 8, 50, 0.48) 28%,
    rgba(60, 120, 255, 0.20) 38%,
    rgba(140, 190, 255, 0.10) 48%,
    rgba(60, 120, 255, 0.20) 58%,
    rgba(0, 8, 50, 0.48) 68%,
    rgba(0, 8, 50, 0.48) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

/* Hover: Lichtstrahl zurückfahren → mehr Bild sichtbar */
.glass-card:hover .glass-card-img-wrapper::after {
  opacity: 0.12;
}

/* Kein Overlay auf dem Hero-Hauptbild */
.hero-image-box .glass-card-img-wrapper::after {
  display: none;
}

.glass-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-card:hover .glass-card-img {
  transform: scale(1.05);
}

.glass-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.glass-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.glass-card-meta {
  font-size: 0.82rem;
  color: var(--accent-blue-bright);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.glass-card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

.glass-card-foot {
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.78rem;
  color: var(--text-dimmed);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   10. Prominenter Auszeichnungs-Banner (.award-glass-card)
   -------------------------------------------------------------------------- */
.award-glass-card {
  position: relative;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.22) 0%, rgba(8, 16, 28, 0.9) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 119, 255, 0.55);
  border-radius: 0;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.75), 0 0 28px rgba(0, 119, 255, 0.32);
  transition: all 0.3s ease;
  overflow: hidden;
}

.award-badge {
  display: inline-block;
  background: rgba(0, 119, 255, 0.22);
  border: 1px solid rgba(0, 119, 255, 0.45);
  color: var(--accent-blue-bright);
  padding: 0.3rem 0.85rem;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
}

.award-text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   11. Custom Modern Glass List (Für Sammlungen & Bulletpoints)
   -------------------------------------------------------------------------- */
.custom-glass-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.glass-list-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(0, 119, 255, 0.06);
  border: 1px solid rgba(0, 119, 255, 0.16);
  border-radius: 0;
  padding: 0.65rem 0.95rem;
  transition: all 0.22s ease;
}

.glass-list-item:hover {
  background: rgba(0, 119, 255, 0.14);
  border-color: rgba(0, 119, 255, 0.45);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 12px rgba(0, 119, 255, 0.15);
}

.glass-list-item .glow-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent-blue-bright);
  box-shadow: 0 0 10px var(--accent-blue-bright);
}

.glass-list-title {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.92rem;
}

.glass-list-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Video Player Glass Container
   -------------------------------------------------------------------------- */
.video-glass-card {
  background: rgba(7, 12, 20, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
  transition: all 0.28s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-glass-card:hover {
  border-color: rgba(0, 119, 255, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 22px rgba(0, 119, 255, 0.28);
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
  max-height: 250px;
}

.video-wrapper video {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.video-info {
  margin-top: 0.85rem;
  padding: 0.25rem 0.1rem 0 0.1rem;
}

/* --------------------------------------------------------------------------
   13. Glass Timeline (Vita)
   -------------------------------------------------------------------------- */
.glass-timeline {
  position: relative;
  padding-left: 0;
  margin-left: 0;
}

.glass-timeline::before {
  display: none;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.25rem;
}

.timeline-dot {
  display: none;
}

.timeline-glass-box {
  position: relative;
  overflow: hidden;
  background: rgba(8, 14, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 119, 255, 0.18);
  border-radius: 0;
  padding: 1.15rem 1.35rem;
  transition: all 0.22s ease;
}

/* Blaues Dreieck als moderner Eck-Akzent links oben */
.timeline-glass-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 14px solid var(--accent-blue);
  border-right: 14px solid transparent;
  filter: drop-shadow(0 0 4px rgba(0, 119, 255, 0.5));
  transition: border-top-color 0.22s ease;
}

.timeline-glass-box:hover {
  background: rgba(12, 20, 32, 0.88);
  border-color: rgba(0, 119, 255, 0.42);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 119, 255, 0.18);
}

.timeline-glass-box:hover::before {
  border-top-color: var(--accent-blue-bright);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-blue-bright);
  display: inline-block;
  margin-bottom: 0.3rem;
}

/* --------------------------------------------------------------------------
   14. Modal Lightbox
   -------------------------------------------------------------------------- */
.glass-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.glass-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.glass-modal-container {
  max-width: 88vw;
  max-height: 88vh;
  background: rgba(9, 15, 24, 0.95);
  border: 1px solid var(--glass-border-hover);
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 119, 255, 0.35);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.glass-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: rgba(0, 119, 255, 0.2);
  border: 1px solid var(--accent-blue);
  color: #FFF;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.glass-modal-close:hover {
  background: var(--accent-blue);
  color: #FFF;
  box-shadow: var(--accent-blue-glow);
}

/* Prev / Next Galerie-Navigation */
.glass-modal-prev,
.glass-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 64px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 119, 255, 0.35);
  color: #FFF;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
  transition: all 0.2s ease;
  border-radius: 0;
  line-height: 1;
  user-select: none;
}
.glass-modal-prev { left: 0; }
.glass-modal-next { right: 0; }
.glass-modal-prev:hover,
.glass-modal-next:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue-bright);
  box-shadow: 0 0 20px rgba(0, 119, 255, 0.5);
}

.glass-modal-counter {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dimmed);
  margin-top: 0.4rem;
  letter-spacing: 0.06em;
}

.glass-modal-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.glass-modal-caption {
  padding: 1.15rem 1.75rem;
  background: rgba(4, 7, 12, 0.94);
  border-top: 1px solid rgba(0, 119, 255, 0.18);
  color: var(--text-main);
  text-align: center;
}

/* --------------------------------------------------------------------------
   15. Globale Schwebende Glas-Fußzeile (.glass-footer)
   -------------------------------------------------------------------------- */
.glass-footer {
  margin-top: 2.5rem;
  padding: 0.75rem 1rem;
  background: rgba(6, 11, 19, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.glass-footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.25rem;
  line-height: 1.4;
}

.glass-footer-content a {
  color: var(--accent-blue-bright);
  font-weight: 500;
}

.glass-footer-content a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 119, 255, 0.6);
}

.glass-footer-dot {
  color: var(--accent-blue);
  opacity: 0.8;
  font-weight: bold;
  margin: 0 0.05rem;
}

/* --------------------------------------------------------------------------
   16. Utility & Section Titles
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 1.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.85rem;
  background: var(--accent-blue);
  border-radius: 0;
  box-shadow: 0 0 10px var(--accent-blue);
}

.text-cyan,
.text-blue {
  color: var(--accent-blue-bright) !important;
}

.badge-cyan,
.badge-blue {
  background: rgba(0, 119, 255, 0.16);
  border: 1px solid rgba(0, 119, 255, 0.32);
  color: var(--accent-blue-bright);
  padding: 0.25rem 0.65rem;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
}

/* Glass Navigation Pills */
.nav-pills.glass-pills {
  list-style: none !important;
  padding: 6px !important;
  margin: 0 0 1.5rem 0 !important;
  background: rgba(6, 11, 19, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-pills.glass-pills li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-pills.glass-pills li::before {
  content: none !important;
}

.nav-pills.glass-pills .nav-link {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 0;
  padding: 8px 18px;
  transition: all 0.25s ease;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-pills.glass-pills .nav-link:hover {
  color: #FFFFFF;
  background: rgba(0, 119, 255, 0.15);
}

.nav-pills.glass-pills .nav-link.active {
  color: #FFFFFF;
  background: var(--accent-blue);
  box-shadow: 0 0 16px rgba(0, 119, 255, 0.5);
  border-color: rgba(77, 166, 255, 0.4);
}

/* Glass Jump Menu (Sprungmenü) */
.glass-jump-menu {
  background: rgba(6, 11, 19, 0.76);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px;
  border-radius: 0;
  border: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}

.glass-jump-btn {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0;
  padding: 8px 16px;
  background: rgba(0, 119, 255, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.2);
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.glass-jump-btn:hover {
  color: #FFFFFF;
  background: var(--accent-blue);
  border-color: rgba(77, 166, 255, 0.5);
  box-shadow: 0 0 16px rgba(0, 119, 255, 0.4);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Card Grid – Mehr Luft zwischen den Cards (global)
   -------------------------------------------------------------------------- */
.row.g-3 {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

.row.g-4 {
  --bs-gutter-x: 2.25rem;
  --bs-gutter-y: 2.25rem;
}

/* Vita Header Kästen: Mobil untereinander, ab Tablet nebeneinander */
.vita-boxes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

/* Vita Portrait: mobil nicht beschneiden */
.vita-portrait-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 8px;
}

.vita-portrait-img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
}

@media (min-width: 768px) {
  .vita-boxes-grid {
    grid-template-columns: 260px 1fr;
  }
  .vita-portrait-wrapper {
    height: 200px;
  }
  .vita-portrait-img {
    height: 100%;
    object-fit: cover;
  }
}