/* ============================================================
   LEGACY 83 — FULL MENU PAGE STYLES (menu.css)
   ============================================================ */

/* ----- MENU HERO ----- */
.menu-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/640036866_122097151227280906_804480486341006128_n.webp');
    background-size: cover;
    background-position: center top;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(8, 8, 16, 0.8) 0%,
            rgba(8, 8, 16, 0.65) 50%,
            rgba(8, 8, 16, 0.95) 100%);
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.menu-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 0.6rem 0 1rem;
}

.menu-hero-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.menu-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.menu-hero-badges span {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.menu-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: heroScrollBob 2s ease-in-out infinite;
}

.menu-hero-scroll span {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes heroScrollBob {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ----- STICKY CATEGORY NAV ----- */
.menu-cat-nav {
    position: sticky;
    top: 60px;
    z-index: 90;
    background: rgba(8, 8, 16, 0.97);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-cat-nav::-webkit-scrollbar {
    display: none;
}

.menu-cat-nav-inner {
    display: flex;
    gap: 0;
    min-width: max-content;
    padding: 0 1rem;
}

.mcat-link {
    display: inline-block;
    padding: 1rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.25s, border-color 0.25s;
    text-decoration: none;
}

.mcat-link:hover {
    color: var(--gold);
}

.mcat-link.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ----- TACO TUESDAY BANNER ----- */
.taco-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.4rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(201, 168, 76, 0.08));
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.taco-banner .tt-badge {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
}

.taco-banner .tt-deals {
    display: flex;
    gap: 1rem;
}

.taco-banner .tt-deals span {
    background: var(--gold);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
}

.taco-banner small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ----- FULL MENU MAIN ----- */
.full-menu-main {
    background: var(--dark);
    min-height: 100vh;
}

/* ----- CATEGORY SECTIONS ----- */
.fm-category {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border);
}

.fm-cat-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.fm-cat-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
}

.fm-cat-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

.fm-cat-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ----- FOOD ITEM GRID ----- */
.fm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
}

.fm-grid-sides {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ----- FOOD CARDS ----- */
.fm-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fm-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-gold);
}

.fm-card-premium {
    border-color: rgba(201, 168, 76, 0.3);
    background: linear-gradient(145deg, var(--dark3), var(--dark4));
}

.fm-card-sm .fm-card-img-wrap {
    height: 180px;
}

.fm-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    flex-shrink: 0;
}

.fm-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.fm-card:hover .fm-card-img-wrap img {
    transform: scale(1.08);
}

.fm-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold), #8a6010);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fm-card-body {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fm-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.fm-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.fm-card-price {
    color: var(--gold);
    font-weight: 900;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.fm-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.fm-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

/* ----- AVAILABILITY / DAYS BADGE ----- */
.fm-avail {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    width: fit-content;
}

.fm-avail-daily {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: #34d399;
}

.fm-avail-special {
    background: rgba(201, 168, 76, 0.14);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
}

.fm-avail-happyhour {
    background: rgba(99, 179, 237, 0.12);
    border: 1px solid rgba(99, 179, 237, 0.35);
    color: #63b3ed;
}

.fm-avail-brunch {
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.35);
    color: #fb923c;
}

/* Same style for index.html menu cards */
.menu-avail {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.28rem 0.7rem;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.menu-avail.daily {
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.35);
    color: #34d399;
}

.menu-avail.special {
    background: rgba(201, 168, 76, 0.14);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
}

.menu-avail.hour {
    background: rgba(99, 179, 237, 0.12);
    border: 1px solid rgba(99, 179, 237, 0.35);
    color: #63b3ed;
}

.menu-avail.brunch {
    background: rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(251, 146, 60, 0.35);
    color: #fb923c;
}

/* ----- RESERVATION CTA SECTION ----- */
.fm-reservation-cta {
    position: relative;
    text-align: center;
    padding: 7rem 2rem;
    background: var(--dark2);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.fm-res-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.fm-res-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.fm-res-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.fm-res-content p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.fm-res-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fm-res-address {
    font-size: 0.82rem !important;
    margin-bottom: 0 !important;
}

/* ----- FOOTER ----- */
.fm-footer {
    background: var(--dark4);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    text-align: center;
}

.fm-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fm-footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.fm-footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .menu-hero {
        min-height: 60vh;
        padding: 6rem 1.5rem 4rem;
    }

    .fm-category {
        padding: 3.5rem 1.5rem;
    }

    .fm-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.2rem;
    }

    .fm-cat-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .menu-cat-nav-inner {
        padding: 0 0.5rem;
    }

    .mcat-link {
        padding: 0.8rem 0.9rem;
        font-size: 0.72rem;
    }

    .fm-res-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .fm-grid {
        grid-template-columns: 1fr;
    }

    .menu-hero-title {
        font-size: 2.4rem;
    }
}