@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* ===== Menu Box Area - TV Menu Layout ===== */
.menu-box-area {
    background-image: url('/static/media/background/background.webp');
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     padding: 50px 60px;
}

.menu-box-area .row{
    position: relative;
    z-index: 99;
}

.menu-box-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #000000a8, #00000094, #00000085);
}

#food-item-list{
    padding: 0 !important;
}

footer{
    display: none !important;
}


/* ===== Category Title ===== */
.category-title {
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--theme-color);
}

/* ===== Food Items Columns - Always 2 columns, evenly divided ===== */
.food-items-columns {
    columns: 2;
    column-gap: 40px;
}

.food-item-card p{
    text-align: initial;
}

.food-items-section{
    display: flex;
    gap: 40px;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    padding: 50px 60px;
}

/* ===== Food Item Card ===== */
.food-item-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 18px;
    padding: 8px 0;
}

.food-item-card-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.food-item-name {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.food-item-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(182, 173, 92, 0.4);
    margin-bottom: 4px;
    min-width: 20px;
}

.food-item-price {
    color: var(--theme-color);
    font-size: 28px;
    white-space: nowrap;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.food-item-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Food Image Section (Right Column) ===== */
.food-image-section {
    position: sticky;
    top: 20px;
    text-align: center;
}

/* ===== Image Label - Italic Font Above Slider ===== */
.food-image-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 32px;
    color: var(--theme-color);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: capitalize;
    position: relative;
    padding-bottom: 12px;
}

.food-image-label::before,
.food-image-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
}

.food-image-label::before {
    left: 15%;
    right: 15%;
}

.food-image-label::after {
    left: 25%;
    right: 25%;
    bottom: 4px;
}

/* ===== Splide Slider ===== */
#food-image-slider {
    padding: 0;
}

#food-image-slider .splide__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

#food-image-slider .splide__slide {
    list-style: none;
    position: relative;
}

#food-image-slider .splide__track {
    overflow: hidden;
}

.slide-image-wrapper {
    width: 100%;
    /* aspect-ratio: 1 / 1; */
    overflow: hidden;
    height: 100vh;
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Slide Food Name */
.slide-food-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    color: #fff;
    letter-spacing: 1.5px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Splide pagination dots */
#food-image-slider .splide__pagination {
    bottom: -30px;
}

#food-image-slider .splide__pagination__page {
    background: rgba(255, 255, 255, 0.3);
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

#food-image-slider .splide__pagination__page.is-active {
    background: var(--theme-color);
    transform: scale(1.3);
}

/* Hide splide arrows */
#food-image-slider .splide__arrows {
    display: none;
}

/* ===== Footer Note Bar ===== */
.footer-note {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 30px;
    border-top: 1px solid rgba(182, 173, 92, 0.25);
}

.footer-note span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-note span i {
    color: var(--theme-color);
    font-size: 15px;
}

.footer-note-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--theme-color);
    flex-shrink: 0;
}

.footer-note-credit {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
}

.footer-note-credit strong {
    color: var(--theme-color);
}

/* ===== Responsive ===== */
@media screen and (max-width: 1200px) {

    .category-title {
        font-size: 36px;
    }

    .food-image-label {
        font-size: 28px;
    }
}

@media screen and (max-width: 991px) {
    .food-items-columns {
        columns: 1;
    }

    .menu-box-area {
        padding: 30px 20px 40px;
    }

    .category-title {
        font-size: 32px;
        text-align: center;
    }

    .category-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .food-image-section {
        margin-top: 40px;
        position: static;
    }

    .slide-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-note {
        gap: 12px;
        padding: 12px 20px;
    }

    .footer-note span {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    .menu-box-area {
        padding: 20px 12px 30px;
    }

    .category-title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .food-item-name {
        font-size: 15px;
    }

    .food-item-price {
        font-size: 16px;
    }

    .food-item-card {
        margin-bottom: 12px;
    }

    .food-image-label {
        font-size: 24px;
    }

    .slide-food-name {
        font-size: 15px;
    }

    .slide-image-wrapper {
        max-width: 260px;
    }

    .footer-note {
        flex-wrap: wrap;
        gap: 8px 14px;
        padding: 10px 15px;
        justify-content: center;
        padding-bottom: 60px;
    }

    .footer-note span {
        font-size: 11px;
    }

    .footer-note-divider {
        display: none;
    }

    .food-items-section{
        padding: 40px 20px;
    }

    .slide-image-wrapper{
        height: 400px;
        max-width: 100%;
    }

    .food-image-section{
        margin: 0 !important;
    }
}
