.slider-body-container {
  height: 80vh;
  width: 100vw;
  position: relative;
}
.slide-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 80vh;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  .slider-body-container {
    height: 60vh;
  }
  .slide-body {
    flex-direction: row;
    height: 60vh;
  }
}
.slide-body.active {
  opacity: 1;
  z-index: 10;
}
.image-side {
  width: 100vw;
  height: 50vh;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .image-side {
    width: 60vw;
    height: 100%;
  }
}
.content-side {
  width: 100vw-1rem;
  height: 30vh;
  background-color: rgba(193, 18, 31, 1); /* Warna merah khas */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .content-side {
    width: 40vw;
    height: 40vh;
    padding: 5rem;
  }
}
/* Ornamen di background */
.ornament {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.1;
  pointer-events: none;
}
.nav-buttons {
  position: absolute;
  bottom: 45%; /* Letak di antara gambar dan teks pada mobile */
  left: 83%;
  transform: translateX(-50%);
  display: flex;
  gap: 1px;
  z-index: 50;
}
@media (min-width: 768px) {
  .nav-buttons {
    bottom: 9%;
    left: 47%;
  }
}
.nav-btn {
  background-color: rgba(255, 255, 255, 0.6);
  color: rgba(60, 60, 60, 0.8);
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
