.video-loader { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border: 4px solid rgba(255, 255, 255, 0.2); border-radius: 50%; border-top-color: #ffffff; animation: video-loader-spin 1s linear infinite; z-index: 50; pointer-events: none; } @keyframes video-loader-spin { to {  transform: translate(-50%, -50%) rotate(360deg); } }

.video-section { max-width: 1400px; margin: 0 auto; } .video-strip { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scrollbar-width: thin; scrollbar-color: #555 #222; justify-content: center;  /* center videos horizontally */ } .video-strip::-webkit-scrollbar { height: 6px; } .video-strip::-webkit-scrollbar-thumb { background: #555; border-radius: 10px; } .video-item { flex: 0 0 210px;  /* feste Breite 190px */ height: 500px;  /* maximale Höhe */ cursor: pointer; border-radius: 0px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); transition: transform 0.3s ease; background: #000; } .video-item:hover { transform: scale(1.08); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); } .video-item video { width: 100%; height: 100%; object-fit: cover;  /* füllt die Box komplett aus */ display: block; } /* Modal */.modalvid { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 1000; align-items: center; justify-content: center; } .modalvid-content { max-width: 95%; max-height: 95vh; background: #000; border-radius: 12px; overflow: hidden; position: relative; text-align: center; margin: 0 auto; } .modalvid video { width: 100%; height: auto; max-height: 90vh; display: block; } .close { position: absolute; top: 15px; right: 25px; color: #000; font-size: 40px; font-weight: bold; cursor: pointer; z-index: 10; } .close:hover { color: #ff4444; } .image-section { max-width: 1400px; margin: 0 auto; } .image-strip { display: flex; gap: 20px; overflow-x: auto; padding: 20px 0; scrollbar-width: thin; scrollbar-color: #555 #222; justify-content: center;  /* Bilder zentrieren */ } .image-strip::-webkit-scrollbar { height: 6px; } .image-strip::-webkit-scrollbar-thumb { background: #555; border-radius: 10px; } .image-item { flex: 0 0 210px;  /* Breite 210px */ height: 500px;  /* Höhe 500px */ cursor: pointer; border-radius: 0px; overflow: hidden; transition: transform 0.3s ease; background: #000; } .image-item:hover { transform: scale(1.08); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); } .image-item img { width: 100%; height: 100%; object-fit: cover;  /* Bild füllt die Box komplett aus */ display: block; } .accstart1 { padding: 10px; } .panel { padding: 10px; text-align: left; font-size: 18px; } .accordion { display: flex; align-items: center; background-color: transparent; color: #ffffff; cursor: pointer; padding: 0; width: 100%; border: none; text-align: left; outline: none; font-size: 15px; transition: 0.4s; } .active, .accordion:hover { background-color: transparent; } .panel { padding: 0; background-color: transparent; max-height: 0; overflow: hidden; transition: max-height 0.2s ease-out; } .accordion::before { content: '+'; color: rgb(71, 138, 201); font-weight: bold; font-size: 28px; margin-right: 8px; line-height: 1; padding-bottom: 4px; }

/* Remove top whitespace for section #sec-8a07 on small screens */@media (max-width: 767px) { #sec-8a07 {  padding-top: 0 !important;  margin-top: 0 !important; }  #sec-8a07 .u-shape-1 {  display: none !important;   /* hide decorative block causing extra top space */ }  #sec-8a07 .u-layout-wrap-1 {  margin-top: 0 !important; } }

/* Center content in section #sec-17b9 */#sec-17b9 .u-sheet-1 { display: flex; justify-content: center; } #sec-17b9 .u-group-1, #sec-17b9 .u-container-layout-1 { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }

/* Pop-in on view for targeted image(s) */.pop-on-view { transform: scale(0.1); transform-origin: center center; transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1); } .pop-on-view.is-in { transform: scale(1); } /* Accessibility: respect reduced motion */@media (prefers-reduced-motion: reduce) { .pop-on-view {  transform: none !important;  transition: none !important; } }

/* Reveal section on view: visually start ~2px tall (scale) then expand */.reveal-on-view { transform: scaleY(0.02);  /* ~2% of height ~ visually ~2px for tall sections */ transform-origin: top center; transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1); will-change: transform; overflow: hidden;  /* hide inner overflow during reveal */ } .reveal-on-view.is-in { transform: scaleY(1); } /* Accessibility: respect reduced motion */@media (prefers-reduced-motion: reduce) { .reveal-on-view {  transform: none !important;  transition: none !important; }  /* bilder */ }

/* Scoped hover override for CTA buttons in section #sec-17b9 */#sec-17b9 a.u-black.u-btn.u-button-style.u-btn-1:hover { background-color: #478ac9 !important; transition: background-color 200ms ease; }

/* Image lightbox (gallery) */#imageLightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; padding: 20px; z-index: 1100; } #imageLightbox.open { display: flex; } #imageLightbox .lightbox-content { position: relative; max-width: 95vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; } #lightboxImg { max-width: 100%; max-height: 90vh; width: auto; height: auto; display: block; border-radius: 8px; background: #000; box-shadow: 0 12px 32px rgba(0,0,0,0.55); } #imageLightbox .lightbox-close { position: fixed; top: 16px; right: 22px; color: #fff; background: transparent; border: 0; font-size: 36px; line-height: 1; cursor: pointer; padding: 6px 10px; } #imageLightbox .lightbox-prev, #imageLightbox .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); width: 48px; height: 72px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 32px; line-height: 1; cursor: pointer; display: grid; place-items: center; } #imageLightbox .lightbox-prev { left: 18px; } #imageLightbox .lightbox-next { right: 18px; } #imageLightbox .lightbox-prev:hover, #imageLightbox .lightbox-next:hover { background: rgba(255,255,255,0.16); } #imageLightbox .lightbox-caption { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.9); font-family: "Open Sans", Arial, sans-serif; font-size: 18px; line-height: 1.4; background: rgba(0,0,0,0.35); padding: 6px 10px; border-radius: 6px; max-width: 90vw; text-align: center; } @media (max-width: 767px) { #imageLightbox .lightbox-prev, #imageLightbox .lightbox-next {  width: 40px;  height: 56px;  font-size: 28px; }  #imageLightbox .lightbox-close {  font-size: 32px;  right: 16px;  top: 12px; } }

html { scroll-behavior: smooth; }

/* Overlay for videos in #videoStrip */#videoStrip > * { position: relative; } /* Dark filter and overlays removed per request */

/* Navigation hover override to blue with max specificity */html body header.u-header .u-nav-link:hover, html body .u-menu a.u-nav-link:hover, html body .u-text-hover-palette-2-base:hover, html body header.u-header .u-nav-link.u-text-hover-palette-2-base:hover { color: rgb(71, 138, 201) !important; fill: rgb(71, 138, 201) !important; }

.accordion span { display: inline-block; transition: transform 0.2s ease-in-out; transform-origin: left center; } .accordion:hover span { transform: scale(1.03); }

/* Remove the line appearing before items in the navigation, including active and focus states */.u-nav-item > .u-nav-link::before, .u-nav-item > .u-nav-link::after, .u-nav-item.active > .u-nav-link::before, .u-nav-item.active > .u-nav-link::after, .u-nav-link.active::before, .u-nav-link.active::after, .u-nav-item > .u-nav-link[class*="active"]::before, .u-nav-item > .u-nav-link[class*="active"]::after { display: none !important; content: none !important; } .u-nav-item > .u-nav-link, .u-nav-item > .u-nav-link.active, .u-nav-item.active > .u-nav-link, .u-nav-link, .u-nav-link.active { border: none !important; box-shadow: none !important; text-decoration: none !important; }

.u-nav-link:hover, .u-nav-link-2:hover { color: #478ac9 !important; }

@media (max-width: 575px) { img.u-logo-image.u-logo-image-1 {  transform: scale(0.8);  transform-origin: center center; } }

@media (max-width: 575px) { .u-logo-image-1 {  transform: scale(0.8);  transform-origin: left center; } } #sec-dbf1 .u-image-1 { width: 100% !important; max-width: 460px !important; height: auto !important; margin-left: auto !important; margin-right: auto !important; } .topimgbar { top: -30px; left: -70px; } .imgwand { width: 100%; height: auto; } @media (max-width: 1399px) { #sec-dbf1 .u-image-1 {  width: 100% !important;  max-width: 400px !important;  height: auto !important;  margin-left: auto !important;  margin-right: auto !important; } } @media (max-width: 1199px) { .topimgbar {  display: none; } } @media (max-width: 767px) { .imgwand {  display: none; }  .rectanglefit {  display: none; } } @media (max-width: 599px) { #sec-dbf1 {  padding-top: 0px !important;  margin-top: -50px !important; } }

.accordion span { font-size: 22px !important; line-height: 1.4 !important; } @media (min-width: 500px) { .accordion span {  font-size: 25px !important; } } @media (min-width: 670px) { .accordion span {  line-height: 1.2 !important; } } /* Intro-Video: linken Schriftzug schützen */#sec-4538 video, #sec-4538 .embed-responsive-item, #sec-4538 .u-background-video video { object-fit: cover !important; object-position: left center !important;  /* wichtig: links halten */ } /* Abstand unter dem Intro */@media (max-width: 599px) { #sec-dbf1 {  padding-top: 0 !important;  padding-bottom: 20px !important;  margin-top: -80px !important;  margin-bottom: -40px !important;  min-height: auto !important; }  #sec-dbf1 .u-sheet-1 {  min-height: auto !important;  padding-top: 0 !important;  padding-bottom: 10px !important; }  #sec-dbf1 .u-group-1 {  margin-top: 60px !important;  margin-bottom: 10px !important;  min-height: auto !important; }  #sec-dbf1 .u-container-layout-1 {  padding-top: 0 !important;  padding-bottom: 0 !important; }  #sec-dbf1 .u-text-1 {  margin-top: 0 !important;  margin-bottom: 15px !important; }  #sec-dbf1 .u-btn-1 {  margin-top: 60px !important;  margin-bottom: 40px !important; } } /* 420px */@media (max-width: 490px) { #sec-dbf1 {  margin-top: -240px !important;  margin-bottom: 0px !important;  padding-bottom: 30px !important; }  #sec-dbf1 .u-group-1 {  margin-top: 0px !important; }  #sec-dbf1 .u-text-1 {  margin-bottom: 40px !important; } } /* Footer Darstellung iPhone */html, body { background-color: #000000 !important; } #footer, .u-footer { background-color: #000000 !important; padding-bottom: env(safe-area-inset-bottom) !important;  /* für Home-Indicator */ }

.intro-desktop-img { display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; } @media (max-width: 599px) { .intro-desktop-video {  display: none !important; }  .intro-desktop-img {  display: block; } } @media (min-width: 600px) { .intro-desktop-video {  display: block !important; }  .intro-desktop-img {  display: none !important; } }

#imageStrip figure img { transition: transform 0.3s ease-in-out; } #imageStrip figure:hover img { transform: scale(1.1); }

