@import url("https://fonts.googleapis.com/css2?family=Moon+Dance&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  margin: 0;
  background: #fdfdfd;
  font-family:
    Segoe UI,
    sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.misi {
  font-family: "Roboto", serif;
  word-spacing: 1px;
  font-weight: 400;
  font-size: 25px;
  color: rgb(181, 181, 181);
}

/* Header section */

header {
  width: 100%;
  max-width: 100%;
  padding-left: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
}

header nav a {
  color: #fff;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 16px;
  transition: 0.2s;
  text-decoration: none;
}

a.active {
  background: #14ff72cb;
  border-radius: 2px;
}

/* Navbar */

.navbar {
  background: transparent;
  transition: 0.5s;
}

.navbar .nav-link {
  color: rgb(255, 255, 255) !important;
  text-shadow: none;
}

.navbar .nav-link:hover {
  color: rgb(248, 4, 4) !important;
  text-shadow: none;
}

/* kondisi saat di scroll */
.navbar.navbar-scrolled {
  background: black;
}

.navbar.navbar-scrolled .nav-link {
  color: white !important;
  text-shadow: 0 2px 2px rgb(0, 0, 0, 0.15);
}

.navbar.navbar-scrolled .nav-link:hover {
  color: #00c1fc !important;
}

.navbar-nav a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 2px 2px rgba(105, 105, 105, 0.15);
  letter-spacing: 1px;
}

.navbar-scrolled {
  background-color: black;
  box-shadow: 0 3px 10px rgb(0, 0, 0, 0.15);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  transition: all 0.2s;
}

.nav-link:hover::after {
  content: "";
  height: 2px;
  width: 100%;
  background-color: #fcdf02f5;
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ===============================
   CAROUSEL CONTAINER
================================ */
/* CAROUSEL */

.carousel-item {
  height: 100vh;
  overflow: hidden;
  position: relative;
  perspective: 2000px;
}

/* IMAGE */

.slide-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  object-fit: cover;

  transform: scale(1.2);

  /* membuat gambar lebih cerah dan tajam */
  filter: brightness(1.25) contrast(1.2) saturate(1.15);

  animation: kenburns 18s ease-in-out infinite alternate;
  will-change: transform, filter;
}

/* Ken Burns cinematic zoom */

@keyframes kenburns {
  0% {
    transform: scale(1.2) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.35) translate3d(-3%, -3%, 0);
  }
}

/* OVERLAY */

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.6)
  );
}

/* GLASS CAPTION */

.caption-box {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);

  padding: 40px;
  border-radius: 20px;

  background: rgba(231, 231, 231, 0.08);
  backdrop-filter: blur(12px);

  color: white;
  max-width: 550px;
}

/* TEXT ANIMATION */

.caption-box h1 {
  font-size: 60px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(40px);

  animation: textReveal 1s forwards;
}

.caption-box p {
  font-size: 20px;
  opacity: 0;

  animation: textReveal 1s 0.4s forwards;
}

/* BUTTON */

.btn-premium {
  border-radius: 40px;
  padding: 12px 30px;
  font-weight: 600;
}

/* TEXT ANIMATION */

@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PROGRESS BAR */

.progress-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;

  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.progress-slide span {
  display: block;
  height: 100%;
  width: 0;
  background: rgb(253, 1, 1);

  animation: progressAnim 6s linear infinite;
}

@keyframes progressAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .caption-box {
    left: 50%;
    transform: translateX(-50%);
    padding: 25px;
    width: 90%; /* agar tidak terlalu lebar di mobile */
    text-align: center;
  }

  .caption-box h1 {
    font-size: 34px;
  }
}

/* About section */

.about-img-wrapper {
  overflow: hidden; /* gambar tidak keluar dari card */
  border-radius: 10px; /* samakan dengan radius gambar */
}

.about-img {
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.2); /* efek zoom */
}

/* Responsive Design */

@media screen and (max-width: 999px) {
  header {
    padding-left: 50px;
  }

  .list .item .content {
    left: 50px;
  }

  .content .title,
  .content .name {
    font-size: 70px;
  }

  .content .des {
    font-size: 16px;
  }
}

@media screen and (max-width: 690px) {
  header nav a {
    font-size: 14px;
    margin-right: 0;
  }

  .list .item .content {
    top: 40%;
  }

  .content .title,
  .content .name {
    font-size: 45px;
  }

  .content .btn button {
    padding: 10px 15px;
    font-size: 14px;
  }
}
/* About section END */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
  text-decoration: none;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #b7b7bb;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
  color: #5c5cf7;
}

.footer .copyright {
  left: 10px;
  padding: 15px 0;
  font-family: Segoe UI;
  font-size: 12px;
  font-style: italic;
  border-top: 1px solid rgb(119, 119, 118);
}

.footer .copyright a {
  font-size: 15px;
  color: var(--light);
}

.footer .alamat {
  font-family: "Moon Dance", serif;
  word-spacing: 2px;
  font-weight: 600;
  font-size: 20px;
  color: rgb(67, 211, 247);
}

/* icon */
.icon-area {
  display: flex;
}
.icon-area .icon a {
  width: 35px;
  height: 35px;
  background: #fff;
  font-size: 20px;
  margin: 0 5px;
  display: block;
  line-height: 30px;
  text-align: center;
  border-radius: 2px;
  position: relative;
  border: 3px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
}
.icon-area .icon a i {
  position: relative;
  color: #262626;
  transition: 1s;
}
.icon-area .icon a:hover i {
  transform: rotateY(360deg);
  color: #fff;
}
.icon-area .icon a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #b5d3f0, #0499f0);
  left: 0;
  top: 100%;
  transition: 1.5s;
}
.icon-area .icon a:hover:before {
  top: 0;
}

/* owl carousel - event */

.card-img-top {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.owl-prev {
  left: -2px;
}

.owl-next {
  right: -2px;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 40px;
}

.owl-prev span,
.owl-next span {
  font-size: 80px;
  color: white;
}

/* EVENT - IMAGE WRAPPER */
.event-image-wrapper {
  position: relative;
  overflow: hidden;
}

.event-img {
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s;
}

.event-card:hover .event-img {
  transform: scale(1.1);
}

.event-date {
  position: absolute;
  top: 15px;
  left: 15px;

  background: #ffc107;
  color: #000;

  width: 65px;
  height: 65px;

  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-weight: bold;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.event-date .day {
  font-size: 22px;
}

.event-date .month {
  font-size: 12px;
  letter-spacing: 1px;
}

.event-card {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

/* BUTTON */
.event-card .btn {
  border-radius: 30px;
  padding: 8px 22px;
}

/* EVENT - IMAGE WRAPPER - END */
