/* --- BENTO OCCASION GRID STYLE --- */

.st-bento-section {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.st-bento-grid {
    display: grid;
    gap: 15px;
    /* Desktop & Tablet: 4 Kolom Dasar */
    grid-template-columns: repeat(4, 1fr);
    /* Desktop & Tablet: 2 Baris Tinggi Tetap */
    grid-template-rows: 240px 240px;
}

.st-bento-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: #f0f0f0;
}

/* --- LOGIC GRID AREA (Desktop & Tablet > 600px) --- */

/* 1. Fresh Bouquet: Tinggi Penuh (Kiri) */
.item-fresh { 
    grid-column: 1 / 2; 
    grid-row: 1 / 3; 
}

/* 2. Wisuda & Ultah: Kotak (Tengah) */
.item-wisuda { 
    grid-column: 2 / 3; 
    grid-row: 1 / 2; 
}
.item-ultah { 
    grid-column: 2 / 3; 
    grid-row: 2 / 3; 
}

/* 3. Papan & Anniversary: Lebar (Kanan) */
.item-papan { 
    grid-column: 3 / 5; 
    grid-row: 1 / 2; 
}
.item-anniv { 
    grid-column: 3 / 5; 
    grid-row: 2 / 3; 
}

/* --- STYLING CONTENT --- */
.st-bento-img-wrapper {
    width: 100%;
    height: 100%;
}

.st-bento-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.st-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    text-align: right;
}

.st-bento-content h3 {
    color: #ffffff;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.2;
    text-transform: uppercase;
}

.st-bento-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.7rem;
    font-weight: 600;
}

/* Hover Effect */
.st-bento-item:hover .st-bento-img-wrapper img {
    transform: scale(1.1);
}

/* --- MOBILE LOGIC (HP Portrait < 600px) --- */
@media (max-width: 600px) {
    .st-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px;
    }

    /* Pola Zig-Zag Mobile agar tetap cantik */
    .item-fresh { 
        grid-column: 1 / 2; 
        grid-row: 1 / 2; 
        height: 180px;
    }
    .item-wisuda { 
        grid-column: 2 / 3; 
        grid-row: 1 / 2; 
        height: 180px;
    }
    .item-papan { 
        grid-column: 1 / 3; 
        grid-row: 2 / 3; 
        height: 140px;
    }
    .item-ultah { 
        grid-column: 1 / 2; 
        grid-row: 3 / 4; 
        height: 160px;
    }
    .item-anniv { 
        grid-column: 2 / 3; 
        grid-row: 3 / 4; 
        height: 160px;
    }

    .st-bento-overlay {
        padding: 12px;
    }
    .st-bento-content h3 {
        font-size: 0.85rem;
    }
}