/* sliding panels */
.wipe-panel-base {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #f5f3f0;
  z-index: 1;
}
.wipe-panel-slide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}
.wipe-panel-1 { z-index: 14; }
.wipe-panel-2 { z-index: 13; }
.wipe-panel-3 { z-index: 12; }
.wipe-panel-inner {
  width: 100%;
  padding: 80px 60px 80px 100px;
}
.wipe-tab {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.wipe-panel-1 .wipe-tab {
  background: rgba(62, 42, 46, 1);
  left: -120px;
  padding-right: 61px;
}
.wipe-panel-2 .wipe-tab {
  background: rgba(110, 95, 98, 1);
  left: -60px;
}
.wipe-panel-3 .wipe-tab {
  background: rgba(158, 148, 150, 1);
}
.wipe-tab p {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 1.5rem;
  font-style: italic;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.wipe-panel-inner h2 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 400;
}
.wipe-panel-inner h2 em {
  font-style: italic;
  font-weight: 300;
}
.wipe-panel-inner h6 {
  font-size: 0.75rem;
  letter-spacing: 3px;
  font-weight: 600;
}
.wipe-panel-inner p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 550px;
}
.wipe-panel-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 65vh;
}
.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #2d2d2d;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.explore-btn-white {
  color: #fff;
}
.explore-btn-white .btn-circle {
  border-color: #fff;
}
.btn-circle {
  width: 40px;
  height: 40px;
  border: 1px solid #2d2d2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.explore-btn:hover .btn-circle {
  transform: translateX(5px);
}
.explore-btn-white:hover .btn-circle {
  background: #2d2d2d;
  color: #fff;
}
@media (max-width: 960px) {
  .wipe-panel-slide {
    position: relative !important;
  height: auto!important;
  }
  .wipe-tab {
    display: none;
  }
  .wipe-panel-inner {
    padding: 60px 20px;
  }
}
/* Video parallax */
.LargeVideo {
    position: relative;
    min-height: 300vh; /* Scroll size */
    background: #fff;
}

/* Container sticky pentru efectul parallax */
.LargeVideo_float {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.LargeVideo_box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    padding: 10px;
}

.LargeVideo_change {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 80%;
    height: 80%;
    display: flex;
    gap: 10px;
    transition: transform 0.1s ease-out;
}

.LargeVideo_box_left,
.LargeVideo_box_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.LargeVideo_box_middle {
    flex: 2.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: opacity 0.3s ease;
}

/* Imagini și video */
.LargeVideo_box_left_top,
.LargeVideo_box_left_bottom,
.LargeVideo_box_right_top,
.LargeVideo_box_right_bottom,
.LargeVideo_box_middle_top,
.LargeVideo_box_middle_bottom {
    flex: 1;
    overflow: hidden;
    border-radius: 0;
    transition: opacity 0.3s ease;
}

.LargeVideo_box_middle_middle {
    flex: 2.5;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    aspect-ratio: 16 / 9;
}

.LargeVideo_change img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.LargeVideo_box_middle_middle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#LargeVideo_middleofLargeVideo {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .LargeVideo_change {
        width: 95%;
        height: 95%;
        gap: 5px;
    }
    
    .LargeVideo_box_left,
    .LargeVideo_box_middle,
    .LargeVideo_box_right {
        gap: 5px;
    }
}