#hero {
  position: relative; /* penting agar logo bisa diposisikan relatif terhadap section */
}

.cta-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 20;
}


.btn-get-in-touch {
  padding: 14px 32px;
  background: linear-gradient(to right, #d60000, #ff3c3c);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-get-in-touch:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}


.logo-overlay-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 10px; /* sesuaikan ukuran */
  width: auto;
  z-index: 10;
  opacity: 0.95;
}

/* Container for the entire collage */
.collage-container {
  width: 100vw;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 5px;
  background-color: #111;
}

@media (max-width: 768px) {
  .collage-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}





/* Container video */
.video-thumb {
  position: relative;
  background-color: #000;
  border-radius: 0px;
  overflow: hidden;
}

/* Video tetap di bawah */
.video-thumb video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Overlay gradient hitam full screen */
.video-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
  z-index: 1;
  pointer-events: none;
}


.timeline-section {
  padding: 20px 20px 60px 20px;
  color: #111;
  font-family: 'Arial', sans-serif;
}

.timeline-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  margin: auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #d60000;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #d60000;
  border-radius: 50%;
}

.timeline-location {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}

.timeline-details {
  font-size: 16px;
  line-height: 1.4;
}

.timeline-details span {
  display: block;
  color: #000;
  margin-top: 4px;
}

.label-soon {
  display: inline-block;
  background-color: #d00;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 4px;
  vertical-align: middle;
}








