    .bs {
    position: relative;
    height: 100vh;
    overflow: hidden;
    }

    /* .bs-bg {
    background-image: url('/images/depan3.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
    } */

    /* .bs-bg {
    background-color: #ff0000a4;
    width: 100%;
    } */

    .bs-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0); /* efek transparan putih */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    }

    .bs {
        background: hsla(0, 0%, 0%, 1);

        /* background: linear-gradient(270deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 1) 64%, hsla(24, 85%, 8%, 1) 79%, hsla(24, 86%, 48%, 1) 100%);
        
        background: -moz-linear-gradient(270deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 1) 64%, hsla(24, 85%, 8%, 1) 79%, hsla(24, 86%, 48%, 1) 100%);
        
        background: -webkit-linear-gradient(270deg, hsla(0, 0%, 0%, 1) 0%, hsla(0, 0%, 0%, 1) 64%, hsla(24, 85%, 8%, 1) 79%, hsla(24, 86%, 48%, 1) 100%);
        
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#000000", GradientType=1 ); */
    padding: 0px 0px;
    text-align: center;
    }

    .bs h2 {
    position: absolute;
    top: 210px;
    font-size: 65px;
    color: #e26511;
    font-family: 'Arial', sans-serif;
    }

    /* .bs bs-bg bs-overlay h2 {
    transition: opacity 0.7s ease;
    opacity: 0;
    }
    .bs bs-bg bs-overlay h2.show{
    opacity: 1;
    } */

    .produk-container {
    position: absolute;
    top: 350px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    }

    .produk-item {
    background: rgba(226, 101, 17, 0.75);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 220px;
    transition: transform 0.3s ease;
    }

    .produk-item:hover {
    transform: scale(1.05);
    }

    .produk-item img {
    width: 100%;
    border-radius: 15px;
    }

    .produk-item h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #ffffff;
    }

    *{
        padding: 0;
        margin: 0;
    }

    html {
  scroll-behavior: smooth;
        }
    img {
  display: block;
  border: none;
  box-shadow: none;
        }

    .produk-item a {
    text-decoration: none;
    color: inherit;
    }
