.events .nav-tabs {
  text-align: center;
  margin: auto;
  display: block;
  border-bottom: 0;
  margin-bottom: 30px;
}
.events .nav-tabs li {
  display: inline-block;
  margin-bottom: 0;
}
.events .nav-tabs a {
  border: none;
  border-radius:25px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  padding: 10px 100px;
}
@media (max-width: 991px) {
  .events .nav-tabs a {
    padding: 8px 60px;
  }
}
@media (max-width: 767px) {
  .events .nav-tabs a {
    padding: 8px 50px;
  }
}
@media (max-width: 480px) {
  .events .nav-tabs a {
    padding: 8px 30px;
  }
}
.events .nav-tabs a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}
.events .sub-heading {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin: 0 auto 30px auto;
}
@media (min-width: 991px) {
  .events .sub-heading {
    width: 75%;
  }
}
.events .tab-pane {
  transition: ease-in-out 0.2s;
}
.events .schedule-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding-top: 15px;
  padding-bottom: 15px;
  transition: background-color ease-in-out 0.3s;
}
.events .schedule-item time {
  padding-bottom: 5px;
  display: inline-block;
}
.events .schedule-item .speaker {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  float: left;
  margin: 0 10px 10px 0;
}
.events .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}
.events .schedule-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.events .schedule-item h4 span {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-weight: normal;
  font-size: 16px;
}
.events .schedule-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}



#countdown {
			font-size: 2.5rem;
			font-weight: 700;
			color: #FFD700;
		}

		.countdown-box {
			min-width: 80px;
			padding: 10px;
			color: #fff;
			border-radius: 10px;
			font-weight: bold;
			text-align: center;
			font-size: 1.2rem;
		}

		.countdown-label {
			display: block;
			font-size: 0.8rem;
			margin-top: 5px;
			font-weight: normal;
		}

		.countdown-water {
			background-color: #2EBAC6;
		}

		.countdown-forest {
			background-color: #63B34D;
		}

		.countdown-soil1 {
			background-color: #963D1D;
		}

		.countdown-sun {
			background-color: #E84C3D;
		}

		.hero-background {
			position: absolute;
			inset: 0;
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
			z-index: 1;
		}

		#overlayGambar {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			background: rgba(0, 0, 0, 0.8);
			display: none;
			justify-content: center;
			align-items: center;
			z-index: 9999;
			overflow: hidden;
			transition: opacity 0.5s ease;
			opacity: 0;
		}

		#overlayGambar.show {
			display: flex;
			opacity: 1;
		}

		#overlayGambar img {
			transition: transform 0.5s ease;
		}

		@media (min-width: 768px) {
			#overlayGambar img {
				max-width: 90vw;
				max-height: 90vh;
				transform: scale(1);
				cursor: zoom-out;
			}
		}

		@media (max-width: 767px) {
			#overlayGambar {
				overflow: scroll;
			}

			#overlayGambar img {
				width: auto;
				height: auto;
				max-width: none;
				max-height: none;
				cursor: grab;
			}
		}

		.masonry-grid {
			display: flex;
			flex-wrap: wrap;
			margin-left: -1rem;
			margin-right: -1rem;
		}

		.masonry-item {
			padding: 1rem;
			box-sizing: border-box;
			width: 100%;
			max-width: 50%;
		}

		@media (max-width: 768px) {
			.masonry-item {
				max-width: 100%;
			}
		}

		.card {
			height: 100%;
			display: flex;
			flex-direction: column;
			border-radius: 8px;
			overflow: hidden;
			background-color: #fff;
		}

		.card-img-top img {
			width: 100%;
			height: auto;
			object-fit: cover;
			display: block;
		}

		.card-body {
			padding: 1.25rem;
		}

		.card-title {
			font-size: 1.2rem;
			font-weight: 600;
			margin-bottom: 0.5rem;
		}

		.card-text small {
			display: block;
			color: #888;
			margin-bottom: 0.75rem;
		}

		.card-isi {
			margin-bottom: 1rem;
		}

		.btn-toggle {
			margin-top: auto;
		}

		#loadMore {
			margin-top: 30px;
		}