/* =====================================================================
   Breadcrumb hero (site-wide) — dark hero look like the home page, with a
   cluster of floating dynamic signature dishes on the right. The .bcx-wrap
   class + the .bcx-dishes cluster are added by assets/js/breadcrumb-dishes.js
   from a template rendered in _Layout. .bcx-* namespace.
   ===================================================================== */
.breadcumb-wrapper.bcx-wrap {
    position: relative;
    background-color: #0c0a08;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    /* medium height band (was too tall with a 2x2 dish stack) */
    padding-top: 74px;
    padding-bottom: 74px;
    min-height: 0;
}

    .breadcumb-wrapper.bcx-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
            linear-gradient(90deg, rgba(8, 6, 5, .94) 0%, rgba(8, 6, 5, .82) 40%, rgba(8, 6, 5, .5) 100%),
            linear-gradient(0deg, rgba(8, 6, 5, .7) 0%, rgba(8, 6, 5, .15) 45%);
    }

    /* warm glow behind the dishes */
    .breadcumb-wrapper.bcx-wrap::after {
        content: "";
        position: absolute;
        right: 4%;
        top: 50%;
        width: 460px;
        height: 460px;
        max-width: 50vw;
        transform: translateY(-50%);
        background: radial-gradient(circle, rgba(250, 133, 7, .22) 0%, rgba(250, 133, 7, 0) 66%);
        z-index: 0;
        pointer-events: none;
    }

    .breadcumb-wrapper.bcx-wrap .container {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 44px;
    }

    .breadcumb-wrapper.bcx-wrap .breadcumb-content {
        text-align: left;
        flex: 1 1 auto;
        max-width: 600px;
    }

        .breadcumb-wrapper.bcx-wrap .breadcumb-content::before {
            content: "India Village \00B7 Interlaken";
            display: block;
            font-family: var(--style-font, cursive);
            color: var(--theme-color, #FA8507);
            font-size: 23px;
            line-height: 1;
            margin-bottom: 12px;
        }

    .breadcumb-wrapper.bcx-wrap .breadcumb-title {
        color: #fff;
        text-shadow: 0 4px 26px rgba(0, 0, 0, .5);
    }

    .breadcumb-wrapper.bcx-wrap .breadcumb-menu {
        margin-top: 6px;
    }

        .breadcumb-wrapper.bcx-wrap .breadcumb-menu li,
        .breadcumb-wrapper.bcx-wrap .breadcumb-menu li a,
        .breadcumb-wrapper.bcx-wrap .breadcumb-menu li::after {
            color: rgba(255, 255, 255, .8);
        }

            .breadcumb-wrapper.bcx-wrap .breadcumb-menu li a:hover {
                color: var(--theme-color, #FA8507);
            }

/* ---- floating dishes (single compact row) ---- */
.bcx-dishes {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: auto;
    max-width: min(54%, 540px);
}

.bcx-dish {
    flex: 1 1 0;
    min-width: 0;
    max-width: 128px;
    animation: bcxFloat 6s ease-in-out infinite;
    will-change: transform;
}

    .bcx-dish:nth-child(2) { margin-top: 22px; animation-delay: .8s; }
    .bcx-dish:nth-child(3) { animation-delay: .4s; }
    .bcx-dish:nth-child(4) { margin-top: 22px; animation-delay: 1.2s; }

@keyframes bcxFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.bcx-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(216, 178, 95, .35);
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .8);
}

    .bcx-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.bcx-ribbon {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #201400;
    background: linear-gradient(135deg, #ffd488, var(--theme-color, #FA8507));
    box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}

.bcx-cardinfo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 9px 8px;
    background: linear-gradient(180deg, rgba(12, 9, 6, 0) 0%, rgba(12, 9, 6, .92) 100%);
}

.bcx-cardname {
    display: block;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bcx-cardprice {
    display: block;
    margin-top: 1px;
    color: var(--theme-color, #FA8507);
    font-size: 11px;
    font-weight: 800;
}

/* =====================================================================
   Responsive — hide the dish cluster on tablet/mobile, centre the title
   ===================================================================== */
@media (max-width: 991px) {
    .breadcumb-wrapper.bcx-wrap .container {
        justify-content: center;
    }

    .breadcumb-wrapper.bcx-wrap .breadcumb-content {
        text-align: center;
        max-width: 100%;
    }

    .bcx-dishes { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .bcx-dish { animation: none; }
}
