/* section hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(50%);
}

.hero-content {
    color: #f8fafc;
}

.btn-peta {
    background-color: #c7eeff;
    font-weight: 700;
}

.title-embed-map {
    display: inline-block;
    border-bottom: 2px solid black;
    padding-bottom: 1vh;
}

.map {
    height: 80vh;
    width: 100%;
    border: 0;
}

#nama-perusahaan {
    font-size: 48px;
}

#lokasi-perusahaan {
    font-size: 20px;
}

.tentang {
    padding-top: 50px;
    height: 50vh;
    background-color: #f8fafc;
}
.text-judul{
    align-items: center;
    text-align: center;
}

.text-isi{
    padding-left: 1em;
    padding-right: 1em;
    text-align: justify;
}

.produk {
    margin-bottom: 10vh;
}

.produk-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid black;
    padding-bottom: 1vh;
    margin-bottom: 2vh;
    font-size: 20px;
    text-align: center;
    justify-content: center;
}

.produk-gambar img {
    max-height: 400px;
}

.container-produk {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.konten-paragraf {
    width: 100%; /* Biar teks lebih lebar */
    max-width: 800px; /* Maksimum lebar */
    padding: 20px;
    border-radius: 10px;
    text-align: justify;
}


.product-image {
    width: 50%; /* Setengah dari kontainer */
    height: auto;
}

.product-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.product-text {
    flex: 1;
    max-width: 800px; /* Lebih lebar dari sebelumnya */
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}


.product-features {
    margin-left: 10em;
    width: 80%;
    text-align: justify;
    margin-top: 20px;
    padding: 10vh;
    border-radius: 10px;
}

.product-features h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.product-features ul {
    list-style-type: decimal;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 10px;
    font-size: 16px;
}

.btn-detail{
    border-radius: 20px;
    background-color: #A3E53B;
    color: #f8fafc;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px 20px;
    border: 0;
}

.btn-detail:hover{
    background-color: rgba(136, 255, 136, 0.34) ;
}

@media (max-width: 768px) {

    .tentang {
        margin-bottom: 40vh;
    }
    .product{
        margin-top: 20vh;
    }
    .product-content {
        flex-direction: column; /* Susun atas-bawah */
        text-align: center;
    }

    .product-image img {
        width: 90%;
        max-width: none;
    }
    
    .product-text {
        width: 90%;
        padding: 15px;
    }

    .product-features{
        margin-left: 2vh;
        padding: 10vh;
        width: 100%;
        text-align: justify;
    }
}

@media (max-width: 360px) {

    .tentang {
        margin-bottom: 30vh;
    }
    .product{
        margin-top: 20vh;
    }
    .product-content {
        flex-direction: column; /* Susun atas-bawah */
        text-align: center;
    }

    .product-image img {
        width: 90%;
        max-width: none;
    }
    
    .product-text {
        width: 90%;
        padding: 15px;
    }

    .product-features{
        margin-left: 2vh;
        padding: 10vh;
        width: 100%;
        text-align: justify;
    }
}


