@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Quando&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&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 {
    padding: 0;
    margin: 0;
}
nav {
    background-color: #E9C33F;
    padding: 0.5rem;
    position: fixed;
    width: 100%;
    z-index: 1;
}
nav .menu {
    margin-left: 15vw;
    font-family: 'Roboto', sans-serif;
}
nav .menu ul {
    display: flex!important;
    list-style-type: none;
}
nav .menu ul li {
    padding: 0 2rem;
}
nav .menu ul li a {
    text-decoration: none;
    color: black;
}
nav .menu ul li a.active::after {
    width: 1rem;
    height: 0.5rem;
    background-color: black;
    border-radius: 0.3rem;
}
@media only screen and (max-width: 992px) {
    nav .menu ul li {
        padding: 0 2rem;
        width: fit-content;
    }
}


.hero {
    min-height: 90vh;
    padding-bottom: 5rem;
    background: radial-gradient(at 0px 0px,
      #C8C4BA -90%, #191919 60%) top left,
    radial-gradient(at 0px 0px, #C8C4BA -90%, #191919 60%) bottom right;
}
.hero .container {
    height: 100%;
    color: white;
}


.product {
    padding-top: 9rem;
    text-align: center;
}
.product .judul-product {
    font-family: 'Quando', serif;
    font-size: 1.7rem;
}
.product .subjudul-product {
    color: #E1E1E1;
    font-family: 'Inter', sans-serif;
}
.product .list-product .col {
    padding: 1.5rem;
}
.product .list-product .box {
    background-color: #F6F6F6;
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.product .list-product .box img {
    height: 280px;
}
.product .button {
    margin-top: 2rem;
}
.product .button a {
    background-color: #DDB63C;
}
@media only screen and (max-width: 1200px) {
    .product .list-product .col {
        padding: 0.5rem;
    }
}
@media only screen and (max-width: 992px) {
    .product .list-product .col {
        padding: 1.5rem;
    }
}
@media only screen and (max-width: 768px) {

}

.service {
    background-color: #DDB63C;
    padding: 0.5rem 0;
}
.service .judul-service {
    font-family: 'Quando', serif;
    font-size: 2.5rem;
    text-align: center;   
}


.details {
    padding: 5rem 0;
}
.details .judul-detail-item {
    font-family: 'Quando', serif;
    font-size: 2rem;
}
.details .deskripsi {
    width: 520px;
    letter-spacing: 1px;
}
@media only screen and (max-width: 992px) {
    .details .deskripsi {
        width: fit-content!important;
    }
    .details .details-item {
        margin-bottom: 4rem;
    }
}
@media only screen and (max-width: 768px) {
    .details .details-item {
        margin-bottom: 7rem;
    }
}
@media only screen and (max-width: 576px) {
    .details .judul-detail-item,
    .details .deskripsi {
        text-align: center!important;
    }
}


.footer {
    background-color: #DDB63C;
    padding: 4rem 0;
    color: white;
}
.footer .judul-footer {
    font-family: 'Quantico', sans-serif;
    font-size: 1.7rem;
}
.footer .subjudul-footer {
    font-family: 'Quando', serif;
    font-size: 1rem;
}
.footer .kanan .col {
    font-family: 'Quando', serif;
    font-size: 1rem;
}
@media only screen and (max-width: 992px) {
    .footer .kiri {
        width: 300px;
    }
    .footer .kanan .col {
        padding: 0!important;
    }
}
@media only screen and (max-width: 768px) {
    .footer .kiri {
        width: 400px;
    }
}
@media only screen and (max-width: 576px) {
    .footer .kiri {
        width: 100%;
        text-align: center;
    }
    .footer .kanan {
        width: 100%;
        text-align: center;
        margin-top: 4rem;
    }
    .footer {
        padding-bottom: 2rem!important;
    }
}


.mybtn {
    text-decoration: none;
    color: white;
    padding: 0.3rem 1.7rem;
    border-radius: 6px;
}
