#content {
  padding-top: 0 !important;
  margin: 0 !important;
  min-height: unset !important;
  position: relative;
}

.exhibiton-product-image > img {
  height: 100% !important;
  width: auto !important;
  transition: ease-in-out 0.5s;
}
.exhibition-content-title {
  transition: ease-in-out 0.3s;
}

.exhibition-content:hover .exhibition-content-title {
  color: #ffba00;
}

.exhibition-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* Awalnya transparan */
  transition: background 0.5s ease;
}

/* Efek hover */
.container-exhibition:hover .exhibition-overlay {
  background: rgba(0, 0, 0, 0.5); /* Gelap saat hover */
}

footer {
  display: none;
}
.horizontal-scroll {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth; /* Aktifkan efek smooth */
  -webkit-overflow-scrolling: touch; /* Percepat scrolling di iOS & Mac */
}

/* Menghilangkan scrollbar default */
.hide-scroll-bar {
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
.hide-scroll-bar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Container utama slider */
.slider-container {
  position: relative;
  overflow: hidden;
}

/* Efek hover untuk item exhibition */
.container-exhibition {
  position: relative;
  overflow: hidden;
}
.exhibition-overlay {
  /* 🔹 NEW CLASS */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease-in-out;
}
.container-exhibition:hover .exhibition-overlay {
  /* 🔹 NEW CLASS */
  background: rgba(0, 0, 0, 0.4);
}

/* Tombol navigasi arrow */
.slider-arrow {
  /* 🔹 NEW CLASS */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 1);
  color: white;
  padding: 6px 18px;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease;
  opacity: 0; /* Default tersembunyi */
  pointer-events: none;
}
.left-arrow {
  left: 10px;
} /* 🔹 NEW CLASS */
.right-arrow {
  right: 10px;
} /* 🔹 NEW CLASS */

/* Arrow muncul saat kursor mendekati sisi layar */
.slider-container:hover .slider-arrow {
  /* 🔹 NEW RULE */
  opacity: 1;
  pointer-events: auto;
}

.desktop-exhibition-flyer {
  display: block ;
}
.mobile-exhibition-flyer {
  display: none ;
}

.text-wrapper{
	font-size : 14px !important;
}

@media screen and (max-width: 600px) {
	.slider-arrow{
		visibility:hidden !important;
	}
  footer {
    display: block;
  }
  .desktop-exhibition-flyer {
    display: none ;
  }
  .mobile-exhibition-flyer {
    display: block;
  }
}


@media (min-width: 768px) {
  #scroll-text {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
  }

  #scroll-text > .center-wrapper {
    flex: 1;
    display: flex;
    align-items: center;

    justify-content: center;
  }

  #scroll-text .text-wrapper {
	  	 padding: 3rem 0;
    margin-top: auto;
    margin-bottom: auto;
  }
}

