@charset "utf-8";
/* menu.css — BistroPro */

/* ── Menú hamburguesa móvil ────────────────────────────────────── */
@media screen and (max-width: 650px) {

    /* Botón hamburguesa */
    .nav-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 8px;
        left: 12px;
        z-index: 1100;
        width: 38px;
        height: 38px;
        background: rgba(13, 13, 13, 0.92);
        border: 1px solid var(--border);
        border-radius: 8px;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
        padding: 8px;
    }

    .nav-hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--accent);
        border-radius: 2px;
        transition: transform 0.3s, opacity 0.3s;
    }

    /* Animación al abrir */
    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Ocultar nav normal en móvil */
    #navtraviesos {
        display: none;
    }

    /* Overlay oscuro */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1050;
        backdrop-filter: blur(2px);
    }

    .nav-overlay.open {
        display: block;
    }

    /* Panel lateral izquierdo */
    .nav-drawer {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 260px;
        background: #161616;
        z-index: 1099;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .nav-drawer.open {
        transform: translateX(0);
    }

    .nav-drawer-header {
        padding: 1.25rem;
        border-bottom: 1px solid var(--border);
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.4rem;
        letter-spacing: 3px;
        color: var(--accent);
    }

    .nav-drawer a {
        display: block;
        padding: 0.85rem 1.25rem;
        color: var(--muted);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-left: 3px solid transparent;
        transition: color 0.15s, background 0.15s, border-color 0.15s;
        border-bottom: 1px solid var(--border);
    }

    .nav-drawer a:last-child {
        border-bottom: none;
    }

    .nav-drawer a:hover,
    .nav-drawer a.active {
        color: var(--accent);
        border-left-color: var(--accent);
        background: rgba(232, 20, 90, 0.07);
    }
}

/* Ocultar hamburguesa en desktop */
@media screen and (min-width: 651px) {
    .nav-hamburger {
        display: none;
    }

    .nav-overlay {
        display: none !important;
    }

    .nav-drawer {
        display: none !important;
    }
}

/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --bg: #0d0d0d;
    --surface: #161616;
    --card: #1c1c1c;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #e8145a;
    --accent2: #ff4d8d;
    --gold: #f5c518;
    --text: #f0ece4;
    --muted: #888888;
}

/* ── Reset base ────────────────────────────────────────────────── */
body,
html {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* ── Header ────────────────────────────────────────────────────── */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(../img/background/header.webp);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
    background-color: #0d0d0d;
}

.logo1 {
    display: block;
    width: 320px;
    height: auto;
}

/* ── Encabezado ────────────────────────────────────────────────── */
.Encabezado {
    width: 100%;
    display: block;
    padding: 3rem 1rem 1.5rem;
    text-align: center;
    background: linear-gradient(160deg, #1a0010 0%, #0d0d0d 70%);
    border-bottom: 1px solid var(--accent);
}

.Encabezado h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin: 0;
}

.Encabezado h2 {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--muted);
    letter-spacing: 2px;
    text-align: center;
    width: 100%;
    margin: 0.4rem 0 0;
}

.Encabezado h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    letter-spacing: 5px;
    color: var(--accent2);
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin: 0;
}

/* ── Nav ───────────────────────────────────────────────────────── */
html {
    scroll-padding-top: 52px;
    /* compensa la altura del nav fijo en anclas */
}

#navtraviesos {
    position: relative;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    width: 100%;
}

/* Clase aplicada por JS cuando el nav llega al tope */
#navtraviesos.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* El scroll horizontal va en el hijo, no en el elemento sticky/fixed */
.nav-inner {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
}

.nav-inner::-webkit-scrollbar {
    display: none;
}

#navtraviesos a {
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1rem 1.1rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

#navtraviesos a:hover,
#navtraviesos a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ── Main ──────────────────────────────────────────────────────── */
main {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.25rem 5rem;
}

/* ── Secciones ─────────────────────────────────────────────────── */
main section {
    margin-top: 3rem;
}

/* ── Título de sección ─────────────────────────────────────────── */
.titalimentos {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
    width: 100%;
}

/* ── Item base ─────────────────────────────────────────────────── */
.item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
}

.item:last-child {
    border-bottom: none;
}

.item-left {
    flex: 1;
}

.item-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.item-desc {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 2px;
    font-style: italic;
}

.item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: var(--gold);
    white-space: nowrap;
}

/* ── Doble precio (sin/con queso) ──────────────────────────────── */
.dual-header {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.2rem;
}

.dual-header span {
    width: 3.4rem;
    text-align: center;
    line-height: 1.3;
}

.dual-prices {
    display: flex;
    gap: 0;
    align-items: center;
    white-space: nowrap;
}

.price-sq {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--muted);
    width: 3.4rem;
    text-align: center;
}

.price-cq {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    color: var(--gold);
    width: 3.4rem;
    text-align: center;
}

/* ── Tarjetas especiales ───────────────────────────────────────── */
.card-special {
    background: var(--card);
    border: 1px solid rgba(232, 20, 90, 0.22);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.7rem;
}

.card-special .item {
    border-bottom: none;
    padding: 0;
}

.card-special .item-name {
    color: var(--accent2);
    font-size: 16px;
}

/* ── Grid 2 columnas ───────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.subtitle-col {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--accent2);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

/* ── Arrachera highlight grid ──────────────────────────────────── */
.arrachera-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.arra-card {
    background: var(--card);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
}

.arra-card .item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.arra-card .item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--accent);
    margin-top: 4px;
}

/* ── Nota de sección ───────────────────────────────────────────── */
.secnote {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 0.75rem;
}

/* ── Disclaimer ────────────────────────────────────────────────── */
.disclaim1 {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

/* ── Footer ────────────────────────────────────────────────────── */
footer {
    background-color: #111;
    border-top: 1px solid var(--accent);
    color: var(--text);
    width: 100%;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.contactllb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.logofoot {
    width: 160px;
}

.imglgfoot {
    width: 100%;
    height: auto;
    display: block;
}

.ctctinfo {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.ctctbtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: var(--accent);
    font-size: 14px;
    margin: 0 4px;
    transition: background 0.2s, color 0.2s;
}

.ctctbtn:hover {
    background: var(--accent);
    color: #fff;
}

.addrs {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.addrs a,
.addrs a:any-link {
    color: var(--text);
    text-decoration: none;
    margin: 0 0.5rem;
}

address {
    font-style: normal;
    margin-bottom: 0.5rem;
}

.domicilio {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent2);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.legalinfo {
    font-size: 0.65rem;
    color: var(--muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ── WhatsApp flotante ─────────────────────────────────────────── */
.wapplaunch {
    position: fixed;
    bottom: 70px;
    right: 16px;
    z-index: 9999;
}

.imgwhats {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.2s;
}

.imgwhats:hover {
    transform: scale(1.1);
}

/* ── Preloader texto ───────────────────────────────────────────── */
.preloader-body p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: #e8145a;
    margin-top: 0.75rem;
}

/* ── Responsive ────────────────────────────────────────────────── */
@media screen and (max-width: 650px) {

    main {
        padding: 0 0.75rem 4rem;
    }

    .grid-2,
    .arrachera-grid {
        grid-template-columns: 1fr;
    }

    header {
        background-attachment: scroll;
        height: 60vh;
    }

    .dual-header span {
        width: 3.4rem;
    }

    .price-sq, .price-cq {
        width: 3.4rem;
    }

    .logo1 {
        width: 200px;
    }

    footer {
        padding: 2rem 1rem;
    }

    .contactllb {
        flex-direction: column;
        gap: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    main {
        max-width: 95%;
    }
}