@import url('https://fonts.googleapis.com/css2?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');


body {
    font-family: "Poppins", sans-serif;
}


/* BUTTON */
.btn-danger{
    background-color: #BD0001;
    border-radius: 10px;
    border-color: #BD0001;
    padding: 10px 45px;
    color: white;
}

.btn-outline-danger{
    background-color: transparent;
    border-radius: 10px;
    border-color: #BD0001;
    padding: 10px 45px;
    color: #BD0001;
}


/* .btn-outline-white {
    background-color: transparent;
    border-radius: 10px;
    border-color: #ffffff;
    padding: 10px 45px;
    color: #ffffff;
} */

.btn-outline-white {
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid #ffffff; /* Tambahkan border agar lebih jelas */
    padding: 10px 45px;
    color: #ffffff;
    
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #000000; /* Agar lebih kontras saat hover */
}


/* NAVBAR */
.nav-item .nav-link{
    font-size: 18px;
    margin-left: 5px;
    margin-right: 5px;
}

.scroll-nav-active {
    background-color: white;
    /* border-bottom: 1px solid #BD0001; */
    /* UNTUK BAYANGAN DI NAVBAR */
    box-shadow: 1px 1px 11px -1px rgba(1, 1, 1, 0.08);
}

.text-nav-active{
    color: black;
}



/* HERO */
#hero {
    background-image: url('../../assets/images/il-hero-05.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* ingetin buat ngepas-sin 599 */
    height: 600px;

    /*Supaya teks tetap di tengah */
    /* min-height: 100vh;  */

   /* Supaya teks tetap di tengah */
     align-items: center; 

    /* Tambahkan padding supaya tidak mepet */
    /* padding: 20px;  */
}


.hero-title {
    padding-top: 200px;
}

.hero-text{
    font-size: 65px;
    font-weight: 600;
    /* box-shadow: inset; */

    /* Agar teks tidak bertumpuk */
    /* line-height: 1.2;  */

    /* Mencegah teks keluar dari container */
    /* word-break: break-word;  */
}

/* Media Query untuk layar kecil */
@media (max-width: 450px) {
    .hero-text {
        font-size: 35px; /* Perkecil ukuran teks agar tidak terpotong */
        font-weight: 600;
    }
}

/* Media Query untuk layar sedang */
@media (max-width: 550px) {
    .hero-text {
        font-size: 45px; /* Perkecil ukuran teks agar tidak terpotong */
        font-weight: 600;
    }
}

/* Media Query untuk layar Besar */
@media (max-width: 900px) {
    .hero-text {
        font-size: 50px; /* Perkecil ukuran teks agar tidak terpotong */
        font-weight: 600;
    }
}

/* STRIPE */
.stripe{
    height: 5px;
    width: 40px;
    background-color: #BD0001;
}


#video{
    background-image: url(../../assets/images/il-image-video.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 500px;
}

/* FOTO */
/* PARALAX  BACKGROUND */

.section-foto{
    background-attachment: fixed;
    background-position: top;
    background-size: cover;
    height: 500px;
    width: 100%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.paralax{
    background-image: url(../../assets/images/il-bg-01.jpg);
}

.stripe-putih{
    height: 5px;
    width: 40px;
    background-color: #ffffff;
}

/* @media (max-width: 991.98px) {
    .navbar-collapse {
        display: none;
    }
    .navbar-collapse.show {
        display: block;
    }
} */