@import url(https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css);
@import url(https://site-assets.fontawesome.com/releases/v6.6.0/css/all.css);

body{
    font-family: Poppins, sans-serif;
    /* background-color: #fcf6f5; */
    padding-top: 5%;
    /* padding-bottom: 5%; */
    min-height: 90vh;
    background-color: #e5eaf3;
    position: relative;
}

.custom-font{
    font-family: fantasy;
    
}

.custom-font2{
    font-family: tahoma;
}

.animasi{
    opacity: 0;
    animation: swipeUp 1.5s ease-out forwards;
}

@keyframes swipeUp {
    0% {
        opacity: 0;
        transform: translateY(100px); /* Start from below */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Move up to original position */
    }
}

.custom-body{
    font-family: Poppins, sans-serif;
    position: relative;
    padding-top: 4%;
}

.home-body{
    height: 80vh;
    background: url("../img/bg.jpg");
    background-size: cover;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Warna hitam dengan transparansi 50% */
    pointer-events: auto;
}

.overlay p{
    font-family: 'Courier New';
}
.navbar{
    width: 100%;
    top: 0;
    position: fixed;
    background-color: #fafaf2;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.text-logo{
    font-family: fantasy;
    width: 15%;
    height: auto;
}

.text-header{
    font-family: fantasy;
    height: auto;
}

 .text-logo img{
    width: 30%;
 }


.nav-item{
    margin: 0px 5px;
}
.nav-item:hover{
    background-color: #dd9645;
    border-radius: 10px;
}
.nav-link:hover{
    color: white;
}

.nav-active{
    background-color: #e27900;
    border-radius: 10px;
    margin: 0px 5px;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in; /* Durasi dan easing dari animasi */
}

.fade-in.show {
    opacity: 1; /* Saat kelas 'show' ditambahkan, opacity menjadi 1 */
}

.card-img-top {
    height: 200px; /* Atur tinggi sesuai kebutuhan */
    object-fit: cover; /* Gambar akan disesuaikan dengan ukuran */
    width: 100%; /* Gambar memenuhi lebar kartu */
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    border: solid black 1px;
    transform: scale(1.2); /* Zoom gambar saat hover */
    z-index: 100;
}

.card-footer{
    background-color: #dd9645;
}

.card-footer:hover{
    background-color: #e27900;
    color: white;
}

footer{
    position: absolute;
    width: 100%;
    height: 5vh;
    bottom: 0;
    color: white;
    background-color: #7e7f9c;
}

.dasar-card{
    background-color: #ffffff;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 7px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px; /* Panjang garis */
  height: 4px; /* Ketebalan garis */
  background-color: #e27900; /* Warna garis */
  transform: translateX(-50%);
}

