 @font-face {
    font-family: 'Bitcount Prop Single';
    src: url('/Schrift/Bitcount_Prop_Single/static/BitcountPropSingle-Medium.woff2') format('woff2'),
         url('/Schrift/Bitcount_Prop_Single/static/BitcountPropSingle-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html,body{
  /* 1. Volle Höhe und Scrollen verhindern */
  height:100%;
  margin:0;
  /* WICHTIG: Verhindert Scrollen der gesamten Seite, wenn der Inhalt nicht explizit über den Viewport hinausgeht. */
  overflow: hidden; 
  background:var(--bg);
  color:var(--text);
  font-family: 'Bitcount Prop Single', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

img {
    /* Diese Regel betrifft alle Bilder, aber die spezifischeren Regeln unten überschreiben sie für den Slider */
    width: 100%;
}

/* Fixer Header oben */
.main-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-left {
  flex: 1;
  text-align: left;
}

.header-right {
  flex: 1;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
}

/* Language Globe Icon */
.language-globe {
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  line-height: 1;
  display: flex;
  align-items: center;
}

.language-globe svg {
  color: white;
  transition: all 0.3s ease;
}

.language-globe:hover svg {
  transform: scale(1.2);
  opacity: 0.7;
}

/* Language Menu */
.language-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 8px;
  gap: 4px;
  flex-direction: column;
  z-index: 10001;
}

.language-menu.active {
  display: flex;
}

.language-menu button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bitcount Prop Single', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-align: center;
  min-width: 40px;
}

.language-menu button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.language-menu button.active {
  background: white !important;
  color: black !important;
  border-color: white !important;
  font-weight: bold;
}


/* Links / Rechts */
.header-left a,
.header-right a{
  font-size: 12px;
  line-height:1;
  text-transform: none;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-left a:hover,
.header-right a:hover{
  opacity: 0.7;
}
.content{
  padding: 100px 20px 40px; /* top padding mindestens Headerhöhe */
  max-width: 1100px;
  margin: 0 auto;
}



/* Hintergrundfarbe */
body {
    background-color: black;
}

/* 2. Swiper Container auf Viewport-Höhe setzen */
.swiper {
    width: 100%;
    /* WICHTIG: calc(100vh - Höhe des Headers) */
    /* Wir schätzen die Höhe deines Headers auf 36px (12+12+ca.12) */
    height: calc(100vh - 36px); 
    /* Verschiebt den Swiper nach unten, damit er unter dem fixen Header beginnt */
    margin-top: 36px; 
}


/* ... (Deine Button-Styles hier) ... */

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Zentriert den Inhalt vertikal */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 3. Bild im Slide auf 100% Höhe/Breite setzen */
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%; /* WICHTIG: Volle Höhe des Slides (der jetzt fast 100vh ist) */
  /* Das Bild deckt den Bereich ab, ohne die Proportionen zu verzerren (es wird zugeschnitten) */
  object-fit: cover; 
}

.swiper-button-vorherige,
.swiper-button-naechste {
    position: absolute;
    background-color: white;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-vorherige:hover,
.swiper-button-naechste:hover {
    transform: translateY(-50%) scale(1.3);
}

.swiper-button-vorherige {
    left: 42px;
}
.swiper-button-naechste {
    right: 42px;
}

/* Pagination Bullets */
.swiper-pagination {
  bottom: 30px !important;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 100;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 100%;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet:hover {
  transform: scale(1.3);
  opacity: 0.8;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-pagination-bullet-active:hover {
  transform: scale(1.3);
}

/* Image Tooltip */
.image-tooltip {
  position: absolute;
  display: none;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 18px;
  pointer-events: none;
  z-index: 10000;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.2s ease;
}
