@media (min-width: 768px) {
    main {
        width: 90%;
        margin: 0 auto;
        padding: 40px 0;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 30px;
        border-bottom: 2px solid #333;
        background-color: #ffcf71;
    }

    footer {
        display: flex;
        justify-content: center;
        padding: 20px;
        border-top: 2px solid #333;
        font-weight: bold;
        font-size: 1.2em;
        text-align: center;
        background-color: #b6771d;
        color: #F5F3ED; /* Ditambahkan agar teks terbaca */
    }

    .logo img {
        height: 80px;
        display: block;
        margin: 9px;
        filter: drop-shadow(1px 1px 0px #333) drop-shadow(-1px -1px 0px #333) drop-shadow(1px -1px 0px #333) drop-shadow(-1px 1px 0px #333);
    }

    .logo a {
        display: inline-block;
        line-height: 0;
    }

    nav {
        display: flex;
        align-items: center;
    }

    nav a {
        text-decoration: none;
        color: #333;
        margin: 0 12px;
        font-weight: bold;
        font-size: 1.2em;
        border-bottom: 2px solid transparent;
        padding-top: 5px;
        padding-bottom: 5px;
        white-space: nowrap;
    }

    nav a:hover {
        border-bottom: 2px solid #333;
    }

    nav a.cta-button {
        border: 2px solid #333;
        padding: 5px 10px;
    }

    nav a.cta-button:hover {
        background-color: #333;
        color: #F5F3ED;
    }

    body {
        background-color: #F5DAA7;
        font-family: Arial, sans-serif;
        color: #333;
        margin: 0;
        padding: 0;
        -webkit-text-size-adjust: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hero-v3 {
        flex-direction: row;
        background-color: #F5F3ED;
    }
    .hero-v3-text {
        width: 70%;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-v3-text h1 {
        font-family:'Times New Roman', Times, serif;
        font-weight: normal;
        font-size: 7em;
        margin: 0 0 5px 0;
        color: #4a4a4a;
    }

    .hero-v3-text .tagline {
        font-size: 2.5em;
        color: #d9534f;
        font-weight: bold;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .hero-v3-image img {
        justify-content: right;
        height: 100%;
        width: 100%;
    }

    .year-line {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .year-line span {
        font-weight: bold;
        font-size: 1.5em;
    }

    .year-line::after {
        content: '';
        display: block;
        height: 2px;
        width: 100%;
        background-color: #333;
    }

    .menu-highlight-bar-v2 {
        background-color: #ff9d00;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 10px 20px;
    }

    .menu-highlight-bar-v2 h2 {
        margin: 0;
        font-size: 2em;
        flex-shrink: 0;
    }

    .menu-highlight-bar-v2 .line {
        height: 2px;
        width: 100%;
        background-color: #333;
    }
    .menu-showcase .showcase-title h2 {
        text-align: center;
        font-size: 5em;
        margin-bottom: 60px;
    }

    .menu-showcase .showcase-title h2::after {
        content: '';
        display: block;
        width: 100px;
        height: 2px;
        background-color: #cccccc;
        margin: 15px auto 0;
    }

    .gallery-v2 {
        grid-template-areas: "gabin . esteh" "aneka aneka aneka";
        grid-template-columns: 1fr 0.5fr 1fr;
    }

    .menu-showcase .gallery-item-v2 .image-frame {
        background-color: #ffe9c5;
        padding: 15px;
        border: 2px solid #b6771d;
    }

    .gallery-item-v2 img {
        width: 100%;
        height: 550px;
        display: block;
    }
    .gallery-item-v2 p {
        font-family: 'Times New Roman', Times, serif;
        font-size: 4em;
        font-weight: bold;
        margin-top: 60px;
        margin-bottom: 20px;
        text-align: center;
    }

    /*---About Page---*/
    .about-page .placeholder-text {
    padding-left: 40px;
    padding-right: 40px;
    background-color: #ffcf71;
    margin-top: 50px;
}

.about-page .placeholder-text p {
    font-size: 1.3em; /* Saya kecilkan sedikit dari 3em agar lebih rapi */
    text-align: justify;
}

.gallery {
    display: flex;
    flex-direction: row; /* Layout berdampingan */
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 70px;
    margin-bottom: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.gallery .col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Kolom dengan lebar berbeda agar simetris */
.gallery .col:nth-child(1) {
    flex: 1.2;
}

.gallery .col:nth-child(2) {
    flex: 1.5;
}

.gallery .col:nth-child(3) {
    flex: 1;
}

.gallery .small img {
    width: 100%;
    height: 350px; /* Tinggi tetap untuk gambar di kolom 'small' */
}

    /* Gambar besar bawah */
    .image-large img {
        width: 90%;
        border-radius: 12px;
        margin-top: 40px;
        object-fit: cover;
    }


    /* Gambar Besar */
    .image-large {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    }
    
    /*---Menu Page---*/
    .menu-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 100px;
        margin-bottom: 30px;
    }

    .menu-item img {
        width: 25%;
        height: 25%;
    }

    .menu-item-text { text-align: left; }
    .menu-item-text h2 { 
        font-size: 3.5em;
        margin-top: 0; 
        margin-bottom: 5px; 
    }
    
    .menu-item-text p {
        margin: 0 0 10px 0;
        font-size: 2em;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /*---Product Detail Page---*/
    .product-detail-page .product-image img {
        max-width: 400px;
        display: block;      
        margin: 0 auto;
    }

    /*---Style untuk Halaman Gabin di Desktop---*/
    .menu-item-alternating {
        flex-direction: row;
        font-size: 1.5em;
        text-align: justify;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 80px;
        margin-bottom: 50px;
        gap: 50px;
    }

    .menu-item-alternating .menu-item-content {
        background-color: #ffcf71;
        padding: 20px 25px;
        width: 90%;
        max-width: 1100px;
        border-radius: 20px;
    }

    .menu-item-alternating.reversed {
        flex-direction: row-reverse;
    }

    .menu-item-alternating .menu-item-image {
        width: 340px;
        height: 340px;
        flex-shrink: 0;
    }

    .menu-item-alternating .menu-item-image img {
        width: 320px;
        height: 320px;
    }

    .menu-item-alternating .menu-item-content h3 {
        margin-top: 20px;
        text-align: center;
        font-size: 2em;
    }

    .about-page h1, .menu-page h1, .product-detail-page h1 {
        text-align: center;
        font-size: 5em;
        margin-bottom: 30px;
    }

    .about-page h1::after, .menu-page h1::after, .product-detail-page h1::after {
        content: '';
        display: block;
        width: 100px;
        height: 2px;
        background-color: #cccccc;
        margin: 15px auto 0;
    }

    .about-page .placeholder-text p {
        text-align: justify;
        font-size: 1.5em;
    }

    .menu-page .menu-item .menu-item-text p {
        text-align: justify;
    }

    .read-more-btn {
        display: inline-block;
        background-color: #df9d1a82;
        color: #333;
        padding: 8px 24px;
        margin-top: 10px;
        border: 2px solid #333;
        text-decoration: none;
        font-weight: bold;
        transition: all 0.2s ease-in-out;
        font-size: 1.5em;
    }

    .read-more-btn:hover {
        background-color: #b6771d;
        cursor: pointer;
    }

    .read-more-btn:active {
        background-color: #7b9c91;
        transform: translateY(2px);
    }

    .product-detail-page .placeholder-text p {
        background-color: #ffcf71;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.5em;
        padding: 20px 25px;
        width: 90%;
        max-width: 1400px;
        box-sizing: border-box;
        border-radius: 20px;
    }

     .product-detail-page .product-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 300px;
        height: 300px;
        margin: 0 auto 25px auto; /* Posisi di tengah dan beri jarak bawah */
        border-radius: 50%;
        background-color: #ffe9c5; /* Warna latar belakang lingkaran */
    }

    .product-detail-page .product-image img{
        width: 280px;
        height: 280px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #b6771d; /* Border untuk gambar */
    }

    body {
        /* Menentukan gambar background */
        background-image: url('image/backgroundpapernews.jpg');
        
        /* Membuat gambar menutupi seluruh area tanpa merusak rasio */
        background-size: cover; 
        
        /* Memposisikan gambar di tengah */
        background-position: center; 
        
        /* Mencegah gambar berulang (tiling) */
        background-repeat: no-repeat; 
        
        /* Mengunci posisi background agar tidak ikut scroll */
        background-attachment:scroll; 
        
        /* Menghilangkan margin bawaan browser */
        margin: 0;
        padding: 0;
    }

    body::before {
        content: ''; /* Wajib ada untuk pseudo-element */
        position:fixed; /* Mengambang di atas body */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        
        /* INTI-NYA DI SINI: Warna hitam (0,0,0) dengan transparansi 50% (0.5) */
        background-color: #9f6936a4; 
        
        /* Pastikan overlay berada di BELAKANG konten, tapi di DEPAN background image */
        z-index: -1; 
    }

    /* =================================
   Product Detail Page - Desktop (BARU)
   ================================= */

/* Penyesuaian gambar di desktop */
.product-detail-page .product-image img {
    max-width: 450px; /* Batasi lebar maksimum gambar agar tidak terlalu besar */
}

/* Penyesuaian area teks di desktop */
.product-detail-page .placeholder-text {
    max-width: 650px; /* Batasi lebar teks agar mudah dibaca */
    margin: 0 auto; /* Posisi kotak teks di tengah */
}

/* Penyesuaian perataan teks di desktop */
.product-detail-page .placeholder-text p {
    text-align: justify; /* Teks rata kanan-kiri agar terlihat profesional */
}

    
}