/* Navbar */
.navbar-brand {
    font: 32px Viga;

}


/* Jumbotron */
.jumbotron {
    background: url(../img/jumbotron-bg.jpg);
    background-size: cover;
    height: 540px;
    position: relative;
    z-index: -1;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.jumbotron::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    bottom: 0;
}

.jumbotron .container {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: -40px;
}

.jumbotron img {
    top: 60px;
    position: relative;

}

.jumbotron .display-4 {
    font-weight: 800;
    font-size: 2rem;
    margin-top: -40px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
    font-family: Genos, sans-serif;
}

.jumbotron .display-4 span {
    font-weight: 500;
}

.container-jungle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}



#kontener-konten {
    width: 70%;
}

/* Info Panel */
.info-dpanel {
    background-color: #2fbcc6;
    padding: 30px;
    margin-top: -120px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.info-dpanel .row {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.content-kontener {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-kontener h2 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    text-transform: uppercase;
}

.info-panel p {
    font-size: 14px;
    font-weight: lighter;
    color: #f9e510;
}


/* Workingspace */
.workingspace {
    margin-top: 120px;
    text-align: center;
}

.workingspace img {
    margin-bottom: 20px;
}

.workingspace h2 {
    font-size: 52px;
    text-transform: uppercase;
    font-weight: 200;
}

.workingspace h2 span {
    font-weight: 500;
}

.workingspace p {
    font-size: 18px;
    color: #ACACAC;
    font-weight: 200;
}


/* Testimonial */
.testimonial {
    margin-top: 130px;
}

.testimonial p {
    font-size: 1.4em;
    text-align: center;
    font-weight: 200;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial img {
    width: 80px;
    height: 80px;
    margin: 10px;
    border-radius: 50%;
    filter: grayscale(1);
}

.testimonial .img-main {
    width: 100px;
    height: 100px;
    margin-top: -5px;
    filter: grayscale(0);
}

.testimonial .info-text h5 {
    font-size: 16px;
    font-weight: bold;
}

.kontener-button {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 30px;
}

/* Style untuk dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown>a,
.tombol-daftar>a {
    background: linear-gradient(180deg, rgba(60, 17, 133, 1) 0%, rgba(87, 12, 153, 1) 52%, rgba(4, 0, 255, 1) 100%);
    color: white !important;
    /* padding: 10px 15px; */
    text-decoration: none;
    display: flex;
    border-radius: 5px;
    min-width: 300px;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    font-size: 0.9rem;
}

.dropdown>a:hover,
.tombol-daftar>a:hover {
    background: linear-gradient(90deg, rgba(60, 17, 133, 1) 0%, rgba(87, 12, 153, 1) 52%, rgba(4, 0, 255, 1) 100%);
}

.dropdown ul {
    display: none;
    position: absolute;
    background-color: rgb(9, 231, 213);
    min-width: 300px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 999;
}

.dropdown ul li {
    border-bottom: 1px solid #ddd;
}

.dropdown ul li a {
    color: black;
    /* padding: 10px 15px; */
    text-decoration: none;
    display: flex;
    width: 100%;
    gap: 30px;
    height: 35px;
    align-items: center;
    font-weight: bold;
}

.dropdown ul li a:hover {
    background-color: rgb(110, 177, 171);
}

/* Saat hover tampilkan */
.dropdown:hover ul {
    display: block;
}

/* Utility */
.tombol {
    border-radius: 10px;
    text-transform: uppercase;
    width: 85%;
}

p {
    font-size: 15px;
    font-weight: 800;
}

.footer {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
    bottom: 5px;
    translate: -50%;
    left: 50%;
    position: fixed;
}

/* RESPONSIVE */
@media (min-width: 992px) {
    .navbar {
        padding-top: 20px;
    }

    .navbar-brand,
    .nav-link {
        color: white !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5)
    }

    .nav-link {
        text-transform: uppercase;
        margin-right: 20px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        content: '';
        display: block;
        border-bottom: 3px solid #0B63DC;
        margin: auto;
        margin-bottom: -8px;
        width: 50%;
        padding-top: 5px;
    }


    .jumbotron {
        margin-top: -90px;
        height: 640px;
    }

    .jumbotron .display-4 {
        font-size: 5em;
        margin-top: 150px;
    }


    .workingspace {
        text-align: left;
    }


    .testimonial p {
        font-size: 2em;
    }

}

@media (max-width: 728px) {
    .info-dpanel {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .info-dpanel .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .kontener-button {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        min-width: 100px !important;
        /* gap: 30px; */
    }

    .dropdown>a,
    .tombol-daftar>a {
        background: linear-gradient(180deg, rgba(60, 17, 133, 1) 0%, rgba(87, 12, 153, 1) 52%, rgba(4, 0, 255, 1) 100%);
        color: white !important;
        /* padding: 10px 15px; */
        text-decoration: none;
        height: 60px;
        display: flex;
        border-radius: 5px;
        min-width: 50px !important;
        max-width: 100%;
        text-align: center;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .dropdown ul {
        display: none;
        position: absolute;
        background-color: rgb(9, 231, 213);
        min-width: 100px;
        width: 100%;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        padding: 0;
        margin: 0;
        list-style: none;
        z-index: 999;
    }


    #logohoki {
        margin-top: -300px;


    }

    .jumbotron .container {
        color: white;
        text-align: center;
        position: relative;
        z-index: 1;
        margin-top: 40px;
    }

    #kontener-konten {
        width: 99%;
    }

}