/* ===================================================== */
/* HERO SECTION 
/* ===================================================== */

.section-banner {
    position: relative;
    background-image: url(../images/banner_bg.jpg);
    background-size: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    height: 100%;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% ;
  background: linear-gradient(90deg, #4a4a4a 0%, rgba(245, 245, 245, 0.00) 100%);
background-blend-mode: multiply;
  z-index: 1;
}

.container-banner {
    max-width: 1280px;
}

.banner-logo, 
.banner-texts {
  z-index: 2;
}

.logo-banner {
    max-height: 150px;
    margin-bottom: 20px;
}


/* CALCULATOR */

.calculator-wrap {
    background: #06311bbf;
    width: 90%;
    min-height: 500px;
    padding: 30px 10%;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.calculator-wrap h2 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.calculator-wrap p {
    text-align: center;
    color: #fff;
}

/* FILE DROP AREA */
.file-drop-area {
    width: 220px;
    height: 80px;
    margin: 0 auto;
    background: #ffffff2e;
    transition: 300ms;
    position: relative;
    z-index: 2;
    border: 1px solid #fff
}

.file-drop-area:hover {
    cursor: pointer;
    background: #ffffff71;
}

.drop-file-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    z-index: 5;
    fill: #fff;
    transition: opacity 0.3s ease;
}

.file-drop-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.85rem;
    text-align: center;
    padding: 0 10px;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    z-index: 6;
    word-break: break-all;
}

.file-drop-area .drop-file-icon.hidden {
    opacity: 0;
    pointer-events: none;
}


/* SLIDER */
/* --- base --- */

.slider-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
   padding: 10px;
   margin-top: 20px;
    color: white;
  }

  .slider-head h3 {
    font-size:1.2rem;
    color: white;
    margin-bottom: 0;
  }
  
  .value-box {
    border: 1px solid #fff;
    padding: 5px 20px;
    color: #fff;
    display: flex;
    align-items: center;
  }

  
  #qty-val {
    font-weight: bold;
    margin-right: 5px;
  }
  
  
  .slider-wrap {
    position: relative;
    padding: 20px 0;
  }

  #qty {
    -webkit-appearance: none;
    width: 100%;
    height: 16px;
    background: transparent;
    margin: 0;
    padding: 0;
  }
  
  #qty:focus {
    outline: none;
  }
  
  #qty::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: #ebebeb;
  }
  
  #qty::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: var(--orange);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -8px;
  }
  
  #qty::-moz-range-track {
    width: 100%;
    height: 4px;
    background: #d3d3d3;
  }
  
  #qty::-moz-range-thumb {
    height: 20px;
    width: 20px;
    background: #1a3c2e;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .ends {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 14px;
    padding: 0 10px;
  }
  
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  .sldier-wrap p {
    text-align: right;
  }
  .sldier-wrap a {
    text-decoration: underline;
  }

  

/* ORDER DATES */
  .order-dates h4 {
    color: #fff;
  }

  .order-dates-buttons {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 15px;
  }

  .date-button {
    outline: 1px solid #fff;
    color: #fff;
    background-color: hsla(0, 0%, 100%, 0.25);
    padding: 15px 30px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    width: calc(100% / 3 - 10px);
    text-align: center;
  }
  .date-button:hover {
    background-color: #fff;
    color: var(--dark-green);
  }

  .date-button-clicked {
    background-color: var(--dark-green);
  }

  /* Price summary */
  .price-summary {
    color: #fff;
    margin-top: 20px;
    justify-content: flex-end;
    margin-top: 30px;
    text-align: right;
  }

  .price-summary-text {
    font-size: 2rem;
    font-weight: 600;
  }

  .price-summary-value {
    font-size: 2rem;
    font-weight: 600;
    padding: 0 30px 10px 30px;
    border-bottom: 1px solid #fff;
  }

  .price-summary-currency {
    font-size: 1.4rem;
  }

/* ====================================================== */
/* VIDEO SECTION */
/* ====================================================== */

#video {
    padding-bottom:0;
}

video {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

/* ====================================================== */
/* UNIQUE FEATURES SECTION */
/* ====================================================== */
.section-instructions {
    background-image: url(/images/Ebene_1.png);
    background-size: contain;
}
.instructions {
    padding: 20px 0px;
  
}

.green-icon {
    width: 90px;
    height: 90px;
}


h3 {
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.yellow-ul {
    line-height: 40px;
}

li:before {
    content:"";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 15px;
    margin-right: 15px;
    background-color: var(--dark-green);
    
    /* transform: translateY(-40px); */
}



.yellow-li-indent {
    text-indent: 5%;
}

.section-picture-separator {
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;   
}


/* ===================================================== */
/* TECHNOLOGY SECTION */
/* ===================================================== */

.carousel-indicators {
    position: relative !important;
    bottom: 0;
    left: 0;
    right: 0;
    /* width: 100%; */
    margin: 0 auto;
    padding: 0;
    margin-top: 20px;
    opacity: 1;
}

.carousel-indicators [data-bs-target] {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--dark-green);
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

/* ===================================================== */
/* REALIZATIONS SECTION */
/* ===================================================== */

.realizations-carousel {
    position: relative;
    width: 100%;
    max-width: 1480px;
    margin: 60px auto;
    height: 500px;
    perspective: 1000px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .realizations-carousel .slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0.5;
    transition: all 0.6s ease;
    z-index: 1;
  }
  
  .realizations-carousel .slide img {
    width: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
  }
  
  /* Active (center) */
  .realizations-carousel .slide.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
  }
  
  /* Left (prev) */
  .realizations-carousel .slide.prev {
    transform: translateX(-80%) scale(0.85);
    z-index: 2;
  }
  
  /* Right (next) */
  .realizations-carousel .slide.next {
    transform: translateX(-20%) scale(0.85);
    z-index: 2;
  }
  
  .realizations-carousel .nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    aspect-ratio: 1;
    padding-bottom: 5px;
    padding-left: 5px;
    border-radius: 50%;
  }
  
  .realizations-carousel .prev-btn { left: 20px; }
  .realizations-carousel .next-btn { right: 20px; }
  



/* ===================================================== */
/* ===================================================== */
/* MEDIA QUERIES */
/* ===================================================== */
/* ===================================================== */

@media (max-width: 1200px) {
    .realizations-carousel {
        height: 400px;
    }
} 

@media (max-width: 992px) {
  #hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

   .banner-texts {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     text-align: center;
     margin-bottom: 30px;
   }
    .realizations-carousel {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .instructions {
        flex-direction: column-reverse;
    }
    .instructions img {
      max-width: 400px;
    }
    .realizations-carousel {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .realizations-carousel {
        height: 180px;
        margin: 20px auto;
    }
    
}
