@font-face {
    font-family: 'NeuePower';
    src: url('../fonts/NeuePower/NeuePower-Medium.woff2') format('woff2'),
         url('../fonts/NeuePower/NeuePower-Medium.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

.font-neuepower {
    font-family: 'NeuePower', sans-serif;
}

.header-bg {
	background: url('../img/bg-header.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.footer-bg {
	background: url('../img/bg-footer.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.nav-link {
    font-family: 'NeuePower', sans-serif;
    font-size: 20px;
}

@media (max-width: 767.98px) {
    .navbar-custom .navbar-collapse {
      background-color: #0b0f19 !important;
      padding: 25px;
    }
}

.section-title, .section-countdown {
    font-family: 'NeuePower', sans-serif;
}

.text-prepared {
    font-family: 'NeuePower', sans-serif;
    font-size: 32px;
    line-height: 1.2;
    color: #000;
}

/* VIDEO SECTION */
.video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5);
    -webkit-filter: brightness(0.5);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.background-image {
  background-image: url('../img/bg-header-fix.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.image-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}

/* Kalau Pakai Video */
.video-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0;
    margin-top: 80px;
    max-width: 95%;
}

.image-content h1,
.video-content h1 {
    font-family: 'NeuePower', sans-serif;
    font-size: 4.5rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}
  
.video-content p {
    font-size: 1.5rem;
}
  
/* Responsive untuk tablet */
@media (max-width: 768px) {
	.image-content h1,
    .video-content h1 {
        font-size: 1.7rem; /* 3rem; */
        line-height: 1.5;
    }
	
	.image-content p,
    .video-content p {
        font-size: 1.2rem;
    }
  }
  
/* Responsive untuk mobile */
@media (max-width: 480px) {
    .video-content h1 {
        font-size: 2.5rem;
        line-height: 1.5;
    }
  
    .video-content p {
        font-size: 1rem;
    }
}
  
.countdown {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #1a1a1a;
}
  
.countdown span {
    display: inline-block;
    min-width: 60px;
}
  
/* Responsive tablet */
@media (max-width: 768px) {
    .countdown {
      font-size: 3rem;
    }
}

/* Section Event */
.section-event {
    font-family: 'NeuePower', sans-serif;
    margin-bottom: 6rem;
	overflow: hidden;
}

.section-event .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
  
.section-event .section-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--si-gray-900);
}
  
.section-event .section-header .more-link {
    font-size: 14px;
    color: var(--si-gray-900);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
}

.section-event .cards {
    display: flex;
	gap: 1.5rem;
    flex-wrap: nowrap;
	padding-bottom: 15px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.section-event .card {
    flex: 0 0 auto;
    min-width: 250px;
    background: #fff;
    border: none;
    overflow: hidden;
	border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
	scroll-snap-align: start;
}
  
.section-event .card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
  
.section-event .label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    border-radius: 0;
    z-index: 2;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
  
.section-event .label.blue {
    background-color: #009ddc;
}
  
.section-event .label.green {
    background-color: #6abf4b;
}
  
.section-event .card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
  
.section-event .card:hover .card-overlay {
    transform: translateY(0%);
}
  
.section-event .card-overlay h3,
.section-event .card-overlay p {
    margin: 0;
    font-size: 1rem;
}
  
.section-event .btn {
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    background-color: transparent;
    transition: background-color 0.3s, color 0.3s;
}
  
.section-event .btn:hover {
    background-color: #fff;
    color: #000;
}
  
@media (max-width: 600px) {
    .section-event .cards {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
    }
  
    .section-event .card {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }
	
	.section-event .card img {
		width: 100%;
		height: 650px;
		object-fit: cover;
	}
}
