@font-face {
    font-family: "Gotham";
    src: url("/fonts/GOTHAM-MEDIUM.TTF") format("truetype");
}

@font-face {
    font-family: "Gotham";
    src: url("/fonts/GOTHAM-BOLD.TTF") format("truetype");
    font-weight: bold;
}

body {
    font-family: "Gotham", sans-serif;
}

.menu-title {
    text-align: center;
    font-weight: bold;
    font-size: 2.5rem;
    color: #dc2525;
    margin-bottom: 40px;
}

.menu-section {
    padding: 40px 0;
    background-color: #fff;
}

.menu-card {
    background-color: #ffd700;
    border-radius: 12px;
    /* padding: 20px; */
    position: relative;
    overflow: visible; /* penting agar gambar bisa keluar dari card */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 80%;
    /* height: 180px; */
}

.menu-img {
    width: 300px; /* diperbesar */
    height: auto;
    margin-top: -50px; /* keluar dari atas card */
    position: relative;
    z-index: 2;
}

.menu-img-utama {
    width: 300px; /* diperbesar */
    height: auto;
    margin-top: -50px; /* keluar dari atas card */
    position: relative;
    z-index: 2;
}

.menu-img-utama-roti-baraq {
    width: 300px; /* diperbesar */
    height: auto;
    margin-top: -50px; /* keluar dari atas card */
    position: relative;
    z-index: 2;
}

.product-label {
    /* margin-top: 8px; */
    z-index: 1;
    font-size: 1.8rem;
    color: #dc2525;
    font-weight: bold;
}

.product-price {
    /* margin-top: 8px; */
    z-index: 1;
    font-size: 1rem;
    color: #dc2525;
}

.row-2col {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.row-2col > div {
    flex: 0 0 calc(50% - 1rem); /* 2 kolom */
    max-width: calc(50% - 1rem);
}

/* Untuk row kedua (3 kolom) */
.row-3col {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.row-3col > div {
    flex: 0 0 calc(33.33% - 1rem); /* 3 kolom */
    max-width: calc(33.33% - 1rem);
}

.poster-carousel {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.poster-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.poster-item {
    scroll-snap-align: center;
    width: 80vw;
    max-width: 300px;
    flex: 0 0 auto;
    border-radius: 12px;
    overflow: hidden;
}

.poster-item img {
    width: 100%;
    height: 250px; /* <- Tambahkan tinggi tetap */
    object-fit: cover; /* <- Biar gambar ter-crop rapi tanpa melar */
    display: block;
    border-radius: 20px;
}


/* Desktop Grid */
.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .menu-img {
        width: 95%;
        margin-top: -30px;
    }

    .menu-img-utama {
        width: 135%;
        margin-top: -80px;
    }

    .menu-img-utama-roti-baraq {
        width: 135%;
        margin-top: -60px;
    }

    .menu-card {
        max-width: 90%;
        width: 90%;
        height: 50%;
    }

    .add-on-card {
        width: 80%;
        height: 40%;
    }

    .add-on-img {
        width: 105px;
    }

    .product-label {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 0.6rem;
    }

    /* .menu-card {

    } */
}
