/* ================================================================
   vc-menu.css — Menu Page styles
   ================================================================ */

.vc-menu-page {
    background: #111;
    min-height: 100vh;
}


/* ================================================================
   HERO BANNER
   — Featured image background, dark overlay, centered text
   ================================================================ */
.vc-menu-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 34rem;
    background: #0d0d0d center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.vc-menu-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.50) 0%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 0;
}

.vc-menu-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 var(--side-pad);
}

.vc-menu-hero__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.vc-menu-hero__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0625rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
}


/* ── Menu hero button ── */
.vc-menu-btn {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold) !important;
    background: transparent;
    border: 1.5px solid var(--c-gold);
    padding: 0.75rem 2rem;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.vc-menu-btn:hover {
    background: var(--c-gold);
    color: #111 !important;
}

.vc-menu-btn:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
}


/* ================================================================
   MENU BODY
   ================================================================ */
.vc-menu-body {
    background: #111;
    padding: 4rem var(--side-pad) 5rem;
}


/* ── Category block ── */
.vc-menu-category {
    margin-bottom: 4.5rem;
}

.vc-menu-category:last-of-type {
    margin-bottom: 3rem;
}

/* Category header: title centered with gold underline */
.vc-menu-category__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vc-menu-category__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.625rem;
    line-height: 1.1;
}

/* Gold underline below category title */
.vc-menu-category__rule {
    width: 3.5rem;
    height: 2px;
    background: var(--c-gold);
    margin: 0 auto;
    opacity: 0.85;
}

/* Thin separator line between categories */
.vc-menu-category + .vc-menu-category {
    padding-top: 4.5rem;
    border-top: 1px solid rgba(232,160,44,0.15);
    margin-top: 0;
}


/* ── 2-column items grid ── */
.vc-menu-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
        gap: 0rem 3rem;
    max-width: 70rem;
    margin: 0 auto;
}


/* ── Single menu item ── */
.vc-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1.125rem;
    padding: 1.25rem 1.5rem 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Left column items get right padding; right column items get left padding */
.vc-menu-item:nth-child(odd) {
    padding-right: 2.5rem;
    padding-left: 0;
}

.vc-menu-item:nth-child(even) {
    padding-left: 2.5rem;
    padding-right: 0;
}

/* Remove bottom border from last two items */
.vc-menu-item:nth-last-child(1),
.vc-menu-item:nth-last-child(2) {
    border-bottom: none;
}


/* ── Circular image ── */
.vc-menu-item__img-wrap {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(232,160,44,0.45);
    background: #1a1a1a;
}

.vc-menu-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.vc-menu-item__img-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #2a2010 0%, #111 100%);
    border-radius: 50%;
}


/* ── Item text content ── */
.vc-menu-item__content {
    flex: 1;
    min-width: 0;
    padding-top: 0.125rem;
}

/* Name + Price on the same row */
.vc-menu-item__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
}

.vc-menu-item__name {
    font-family: 'Anton', sans-serif !important;
    font-size: 1.1rem;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.vc-menu-item__price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.vc-menu-item__desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: rgba(205,193,170,0.80);
    line-height: 1.55;
    margin: 0;
}


/* ── Bottom button wrapper ── */
.vc-menu-footer-btn {
    text-align: center;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(232,160,44,0.15);
    margin-top: 0;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 768px) {
    .vc-menu-items-grid {
        grid-template-columns: 1fr;
    }

    .vc-menu-item:nth-child(odd) {
        padding-right: 0;
        border-right: none;
    }

    .vc-menu-item:nth-child(even) {
        padding-left: 0;
    }

    /* On single column, last item has no border */
    .vc-menu-item:last-child {
        border-bottom: none;
    }

    .vc-menu-item:nth-last-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .vc-menu-body { padding-top: 3rem; }

    .vc-menu-category__title { font-size: 1.75rem; }
}

@media (max-width: 576px) {
    .vc-menu-hero__title { letter-spacing: 0.03em; }

    .vc-menu-item {
        gap: 0.875rem;
        padding: 1rem 0;
    }

    .vc-menu-item__img-wrap {
        width: 3.5rem;
        height: 3.5rem;
    }

    .vc-menu-item__name  { font-size: 0.8125rem; }
    .vc-menu-item__price { font-size: 1rem; }
    .vc-menu-item__desc  { font-size: 0.875rem; }
}