/* ini */
.penjelasan {
    font-family: "Avenir Book", sans-serif;
    background-color: #00000000;
    color: #ffffff;
    font-size: 14px;
    text-align: justify;
    line-height: 2;
    margin-bottom: 1em;
    margin-top: 0px;
}

/* ini */
.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Membuat kolom responsif */
    gap: 10px;
    /* Jarak antar kolom */
    padding: 0px;
    padding-right: 100px;
    z-index: 1;
    background-color: #00000000;

}

/* ini */
.intro-box {
    position: relative;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 800px;
    height: 450px;
    /* min-height: 100vh;
    min-width: 100vw; */
    /* Adjust padding for the centered model */
    /* margin-top: 150px; */
    margin-left: 100px;
    z-index: 1;
    /* Ensure it's above other elements */
}

/* ini */
@media (max-width: 768px) {
    .intro-grid {
        flex-direction: column;
        /* Mengubah arah grid menjadi kolom pada layar kecil */
    }

    .intro-box {
        flex-direction: column;
        /* Mengubah arah grid menjadi kolom pada layar kecil */
        margin-left: 0px;
    }

    .section .number {
        font-size: 5em;
        /* Mengurangi ukuran font untuk layar kecil */
    }

    .section .content-fit .title {
        font-size: 2em;
        /* Mengurangi ukuran judul untuk layar kecil */
    }

    #contact table {
        font-size: 1em;
        /* Mengurangi ukuran font tabel untuk layar kecil */
    }

    #contact .sign {
        font-size: 2em;
        /* Mengurangi ukuran font tanda tangan untuk layar kecil */
    }
}

/* ini */
.grid-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Styling untuk menu icon (hamburger menu) */
.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-icon i {
    color: #ffffff;
    font-size: 30px;
}

/* ========== MOBILE MENU ========== */
@media (max-width: 600px) {
    #menuList {
        position: absolute;
        top: 57px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;

        /* background: #00427400; */
        gap: 0;
        overflow: hidden;
        display: none !important;
        /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
        z-index: 100;
        opacity: 0;
        transition: all 0.3s ease;
        /* Efek background baru */
        backdrop-filter: blur(20px) !important;
        background-color: rgba(27, 27, 27, 0.8);
        -webkit-backdrop-filter: blur(20px) !important;
        background-image: repeating-linear-gradient(to right,
                transparent 0 500px,
                /* Diperkecil untuk mobile */
                #eee1 500px 501px) !important;

    }

    #menuList.mobile-visible {
        display: flex !important;
        opacity: 1;
    }

    .menu-icon {
        display: block !important;
        z-index: 1000;
    }

    nav ul li>.dropdown {
        position: static;
        margin-left: 0px;
        width: 100%;
        /* margin-top: 100; */
        max-height: 100;
        overflow: hidden;
        transition: max-height 0.3s ease;
        backdrop-filter: blur(20px) !important;
        /* background-color: rgba(27, 27, 27, 0.8); */
        -webkit-backdrop-filter: blur(20px) !important;
        background-image: repeating-linear-gradient(to right,
                transparent 0 500px,
                /* Diperkecil untuk mobile */
                #eee1 500px 501px) !important;
    }
}

/* ========== FOOTER RESPONSIVE ========== */
@media (max-width: 768px) {
    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-media a {
        justify-content: center;
    }
}