/*!**************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/heroslider/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Shared and Frontend Styles
 */
/* common mixins */
/* animations */
@keyframes showContent {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes runningTime {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}
/*------------------------*/
/* general content styles */
/*------------------------*/
.wp-block-gla-heroslider {
  position: relative;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  /* negative margin for full width look */
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  /* important override theme restrictions */
  max-width: none !important;
  overflow: hidden;
}
.wp-block-gla-heroslider .slide-list {
  height: 100%;
  width: 100%;
  position: relative;
}
.wp-block-gla-heroslider .slide-list .slide-item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.wp-block-gla-heroslider .slide-list .slide-item:nth-child(1) {
  z-index: 3;
}
.wp-block-gla-heroslider .slide-list .slide-item:nth-child(2) {
  z-index: 2;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  clip-path: inset(0 0 0 0);
  transition: clip-path 0s;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper img {
  width: 100%;
  height: 150vh; /* standard for desktop */
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: transform, opacity; /* optimized for parallax*/
  transition: transform 0.1s ease-out, opacity 0.6s ease-in;
  transform: translateY(var(--parallax-offset, 0));
  /* on mobile set image to 100vh and switch off parallax effect */
}
@media (max-width: 767px) {
  .wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper img {
    height: 100vh;
    transform: translateY(0) !important;
    will-change: auto;
  }
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  max-width: 1600px;
  padding: 0 70px;
  color: #fff;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.2666666667);
  z-index: 10;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content.is-align-left {
  text-align: left;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content.is-align-left .slide-buttons {
  justify-content: flex-start;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content.is-align-center {
  text-align: center;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content.is-align-center .slide-buttons {
  justify-content: center;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content.is-align-right {
  text-align: right;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content.is-align-right .slide-buttons {
  justify-content: flex-end;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-author {
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: var(--slider-author-color);
  font-size: var(--slider-author-size);
  font-family: var(--slider-author-font);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-title {
  margin: 10px 0;
  line-height: 1.1;
  color: var(--slider-title-color);
  font-size: var(--slider-title-size);
  font-family: var(--slider-title-font);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-topic {
  margin: 10px 0;
  line-height: 1.1;
  color: var(--slider-topic-color);
  font-size: var(--slider-topic-size);
  font-family: var(--slider-topic-font);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-description {
  margin-top: 10px;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons {
  display: flex; /* Use Flexbox instead of CSS Grid for better item wrapping and reflow */
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
  width: 100%;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 45px;
  padding: 4px 16px;
  letter-spacing: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: none;
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons .button-1 {
  color: var(--slider-button1-textcolor);
  background-color: var(--slider-button1-color);
  border-radius: var(--slider-button1-borderradius);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons .button-1.has-outline {
  border: var(--slider-button1-outlinewidth, 0px) solid var(--slider-button1-outlinecolor, transparent);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons .button-1:hover {
  background-color: var(--slider-button1-hovercolor);
  color: var(--slider-button1-hovertextcolor);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons .button-2 {
  color: var(--slider-button2-textcolor);
  background-color: var(--slider-button2-color);
  border-radius: var(--slider-button2-borderradius);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons .button-2.has-outline {
  border: var(--slider-button2-outlinewidth, 0px) solid var(--slider-button2-outlinecolor, transparent);
}
.wp-block-gla-heroslider .slide-list .slide-item .slide-wrapper .slide-content .slide-buttons .button-2:hover {
  background-color: var(--slider-button2-hovercolor);
  color: var(--slider-button2-hovertextcolor);
}
/*------------------------*/
/* navigation arrows      */
/*------------------------*/
.slide-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 20px;
  pointer-events: none;
}
.slide-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(238, 238, 238, 0.2666666667);
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
  pointer-events: auto;
}
.slide-arrows button:hover {
  background-color: #fff;
  color: #000;
}
/*------------------------*/
/* pagination             */
/*------------------------*/
.slide-pagination {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  gap: 8px;
}
.slide-pagination button {
  width: 14px;
  height: 14px;
  background-color: rgba(238, 238, 238, 0.2666666667);
  border: none;
  padding: 0;
  transition: background-color 0.3s, transform 0.3s;
  border-radius: 2px;
}
.slide-pagination button:hover {
  background-color: #fff;
  transform: scale(1.1);
}
.slide-pagination button.active {
  background-color: #f1683a;
  transform: scale(1.1);
}
/*----------------------------------------------------------------------*/
/* content animation (fade-in) author/title/topic/description & buttons */
/*----------------------------------------------------------------------*/
/* prepare content (nw item) */
.wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-author,
.wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-title,
.wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-topic,
.wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-description,
.wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-buttons {
  /* content container invisible at start position */
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
}
/* short writing for all elements within the content div */
.wp-block-gla-heroslider .slide-list .slide-item:nth-child(1).active .slide-content > * {
  animation: showContent 0.5s linear 1 forwards;
}
/* trigger animation sequential for all elements within content container*/
.wp-block-gla-heroslider .slide-list .slide-item.active .slide-content .slide-author {
  animation-delay: 0.6s !important;
}
.wp-block-gla-heroslider .slide-list .slide-item.active .slide-content .slide-title {
  animation-delay: 0.8s !important;
}
.wp-block-gla-heroslider .slide-list .slide-item.active .slide-content .slide-topic {
  animation-delay: 1s !important;
}
.wp-block-gla-heroslider .slide-list .slide-item.active .slide-content .slide-description {
  animation-delay: 1.2s !important;
}
.wp-block-gla-heroslider .slide-list .slide-item.active .slide-content .slide-buttons {
  animation-delay: 1.4s !important;
}
/*------------------------------------------------------------*/
/* during slide-animation (shutter) show red top progress bar */
/* and prevent navigation- & pagination-buttons from pressed  */
/*------------------------------------------------------------*/
/* progress bar*/
.wp-block-gla-heroslider .slide-time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}
/* triggers animation */
.wp-block-gla-heroslider.next .slide-time,
.wp-block-gla-heroslider.prev .slide-time {
  animation: runningTime 1.5s linear 1 forwards;
}
/* prevent buttons from pressed */
.wp-block-gla-heroslider.next .slide-arrows button,
.wp-block-gla-heroslider.prev .slide-arrows button,
.wp-block-gla-heroslider.next .slide-pagination button,
.wp-block-gla-heroslider.prev .slide-pagination button {
  pointer-events: none;
}
/*--------------------------------------------------------------
# Slider Shutter Effect Logic
--------------------------------------------------------------*/
/**
 * State: is-ready
 * Prevents "ghosting" or flickering: Only the image in the 
 * ACTIVE slide should be visible initially.
 */
.wp-block-gla-heroslider.is-ready .slide-item.slide-item:nth-child(1) img {
  opacity: 1 !important;
}
/**
 * Handle background images for non-active slides.
 * We keep them ready but allow a slight delay to ensure 
 * the shutter transition has priority.
 */
.wp-block-gla-heroslider.is-ready .slide-item:not(.active) img {
  opacity: 1 !important;
  transition-delay: 1s;
}
/* ================================================= */
/* ==== UNIFIED SHUTTER EFFECT (CLIP-PATH LOGIC) === */
/* ================================================= */
/**
 * SHUTTER BASICS:
 * We use high z-index (4) on the "outgoing" slide so it 
 * sits on top while the clip-path "reveals" the slide beneath.
 */
/* --- 1. NEXT TRANSITION (Slides out the old item at Pos 1) --- */
.wp-block-gla-heroslider.next .slide-list .slide-item:nth-child(1) {
  z-index: 4;
}
.wp-block-gla-heroslider.next .slide-list .slide-item:nth-child(1) .slide-wrapper {
  transition: clip-path 1.5s linear;
  clip-path: inset(0 100% 0 0); /* Shrinks the view from right to left */
}
/* --- 2. PREV TRANSITION (Slides out the old item at Pos 2) --- */
.wp-block-gla-heroslider.prev .slide-list .slide-item:nth-child(2) {
  z-index: 4;
}
.wp-block-gla-heroslider.prev .slide-list .slide-item:nth-child(2) .slide-wrapper {
  transition: clip-path 1.5s linear;
  clip-path: inset(0 0 0 100%); /* Shrinks the view from left to right */
}
/**
 * RESET STATE
 * When the .next/.prev classes are removed by JS, 
 * reset the clip-path instantly (0s) for the next cycle.
 */
.wp-block-gla-heroslider:not(.next):not(.prev) .slide-list .slide-item .slide-wrapper {
  transition: clip-path 0s;
  clip-path: inset(0 0 0 0);
}
/* Speziell für Smartphones (max-width: 767px) */
@media (max-width: 767px) {
  .wp-block-gla-heroslider {
    /* Optional: Slider-Höhe auf Handy etwas reduzieren, falls 100vh zu extrem ist */
    height: 80vh;
  }
  .wp-block-gla-heroslider .slide-list .slide-item .slide-content {
    padding: 0 20px; /* Weniger Abstand zum Rand */
  }
  .wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-author {
    --slider-author-size: 16px !important;
    margin-bottom: 5px;
  }
  .wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-title {
    --slider-title-size: 28px !important;
    margin: 5px 0;
  }
  .wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-topic {
    --slider-topic-size: 16px !important;
    margin: 5px 0;
  }
  .wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-description {
    font-size: 12px;
    line-height: 1.3;
    margin-top: 5px;
  }
  .wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-buttons {
    margin-top: 12px;
    gap: 10px;
  }
  .wp-block-gla-heroslider .slide-list .slide-item .slide-content .slide-buttons a {
    height: 38px !important; /* Buttons etwas flacher */
    padding: 0 8px; /* Weniger Padding innen */
    font-size: 10px; /* Kleinere Schrift auf Buttons */
    letter-spacing: 1px;
  }
}

/*# sourceMappingURL=style-index.css.map*/