
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    
}

html {
    scroll-behavior: smooth;
}

.typewriter {
  overflow: hidden;
  border-right: 2px solid #ffe100;
  white-space: nowrap;
  animation: typing 3s steps(30, end), blink 0.75s step-end infinite;
  width: fit-content;
  max-width: 100%;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Nonaktifkan animasi untuk layar kecil (mobile) */
@media (max-width: 768px) {
  .typewriter {
    animation: none;
    border-right: none;
    white-space: normal;
  }
}

.custom-breadcrumb {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    color: white;
  }
  
  .custom-breadcrumb li {
    margin-right: 8px;
  }
  
  .custom-breadcrumb li::after {
    content: "›"; /* atau bisa diganti dengan "/" */
    margin-left: 8px;
    color: white;
  }
  
  .custom-breadcrumb li:last-child::after {
    content: "";
  }
  
  .custom-breadcrumb a {
    text-decoration: none;
    color: white;
  }
  
  .custom-breadcrumb a:hover {
    color: #ffef0a; /* Efek hover opsional */
  }
  



/* Kode CSS untuk Semua section */
.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

/* Kode CSS untuk Section Home */
.section-home {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-image: url('/img/bg/bg1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1; /* ⬅️ Pastikan lebih rendah dari navbar */
  margin: 0;
  padding: 0;
}

.section-home > div {
  transition: opacity 1s ease;
}

#mainNavbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* ini penting */
}




@keyframes bounceSequence {
    0%, 100% {
      transform: translateY(0);
    }
    5% {
      transform: translateY(-10px);
    }
    10% {
      transform: translateY(0);
    }
    /* Sisanya tetap diam */
  }
  
  .bounce-a {
    animation: bounceSequence 6s infinite;
    animation-delay: 0s;
  }
  
  .bounce-b {
    animation: bounceSequence 6s infinite;
    animation-delay: 2s;
  }
  
  .bounce-c {
    animation: bounceSequence 6s infinite;
    animation-delay: 4s;
  }

  .home-icon a {
    margin: 0 10px; /* jarak kiri-kanan antar ikon */
    text-decoration: none;
    color: rgb(64, 117, 252); 
    font-size: 24px; /* bisa sesuaikan ukuran ikon */
  }
  
  .home-icon a:hover{
    text-decoration: none;
  }

.section-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.section-home-left p {
    max-width: 600px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #ffffff;
}
.section-home-left h1 {
    font-weight: bold;
    margin-bottom: 10px;
}


