/* Media query untuk responsif */
@media screen and (max-width: 768px) {

    body {

        
        /* Memusatkan body */
        max-width: 900px;
        /* Batas lebar body */
        padding: 0 20px;
        /* Memberi ruang di sisi untuk layar kecil */
        box-sizing: border-box;
        background-image: url('../gambar/4063097.jpg');
        background-repeat: no-repeat;
        height: 100vh;
        
    
    }

    

    /* untuk navbar */
    .navbar {
        position: fixed; /* Tetap di atas */
        top: 0;
        left: 200;
        width: 520px;
        background: rgba(1, 65, 6, 0.8);
        color: white;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .navbar-menu {
        display: none; /* Default: sembunyikan di layar kecil */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #333;
        height: 35px;
    }

    .navbar-brand {
        display: block;
        font-size: 1.8em;
        font-weight: bold;
        color: #f1faee;
        text-transform: uppercase;
        cursor: pointer;
        text-align: right;
        margin-left: 60px;
    }

    .navbar-menu.show {
        display: inline-flex;
        background-color: rgba(8, 119, 41, 0.74);
        
        height: auto;
        width: 80px;
    }

    .navbar-menu li {
        margin: 5px 0;
        
    }

    .navbar-menu li a{
        text-align: left;
    }

   

    .hamburger {
        display: block; /* Tampilkan tombol hamburger */
        position: absolute;
        height: 20px;
        margin-bottom: 20px;
    }

    /* untuk artikel */
    .content {
        grid-template-columns: 1fr;
    }

    .main-article img {
        width: 100%;
        height: auto;
    }

    .other-article {
        flex: 0 0 100%;
    }

    header{
        display: none;
    }

    .brand-navbar{
        display: flex;
    }



    .horizontal-marquee {
        width: 100%;
        max-width: 100%;
        height: 15px;
        overflow: hidden;
        background: #8da506;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 10px;
        padding: 10px 0;
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        margin-top: 50px;
        z-index: 5;
    }
    
    /* Marquee Content */
    .marquee-content {
        display: inline-block;
        white-space: nowrap;
        animation: scrollLeft 30s linear infinite;
        color: rgb(255, 255, 255);
        font-size: 16px;
    
    }
    
    /* Animation */
    @keyframes scrollLeft {
        0% {
            transform: translateX(100%);
        }
    
        100% {
            transform: translateX(-100%);
        }
    }

    .container-atas {
        flex-direction: column;
    
    }

    /* kolom utama */
    .kolom-utama {
        width: 100%;
        order: 1;
        
        
        
    
    
    
    }

/* sidebar satu */
    .sidebar-satu {
        
        width: 100%;
        order: 2;
       
    
    }

    


/* sidebar dua */
    .sidebar-dua {
        
        width: 100%;
        order: 3;
    
    
    }

   

    .footer-dalam{
        display: none;
    }

    .footer-mini{
        background-color: darkblue;
        font-size: 16px;
    }


}

