/* ============================================================
   MAJJO — Comida Rápida (lomos, hamburguesas, panchos, papas)
   Paleta "Nocturnal Elegance" tomada de Plantilla_Restaurante
   ============================================================ */

:root {
    --bg: #12131a;
    --surface: #1e1f26;
    --surface-high: #282a31;
    --accent: #d97707;
    --accent-light: #ffb77d;
    --text: #e2e1eb;
    --text-muted: #dbc2b0;
    --outline: #a38c7c;
    --outline-subtle: #554336;
}

body { font-family: 'Manrope', sans-serif; }
h1, h2, h3, .font-display { font-family: 'Playfair Display', serif; }
.label-inter { font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; }

.text-accent { color: var(--accent) !important; }
.mca-nav .brand-majjo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: var(--accent); }

.btn-comida {
    background: var(--accent);
    color: #1a0e00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
    padding: 0.65rem 1.6rem;
    border: none;
    border-radius: 0;
}
.btn-comida:hover { background: var(--accent-light); color: #1a0e00; }
.btn-comida-outline {
    border: 1px solid var(--outline);
    color: var(--text);
    background: transparent;
    padding: 0.65rem 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
    border-radius: 0;
}

/* ---------- Hero ---------- */
.comida-hero {
    padding: 170px 0 90px;
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.comida-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1.05; }
.comida-hero .hero-img { border-radius: 8px; box-shadow: 0 30px 60px -20px rgba(217, 119, 7, 0.35); }

/* ---------- Nuestros Platos (plato-card estilo Restaurante) ---------- */
.plato-card { background: var(--surface); border: 1px solid var(--outline-subtle); overflow: hidden; height: 100%; }
.plato-imagen { height: 220px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.plato-card:hover .plato-imagen { transform: scale(1.04); }
.plato-info { padding: 20px; }
.plato-encabezado { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.plato-nombre { font-family: 'Playfair Display', serif; font-size: 1.15rem; }
.plato-precio { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--accent); font-weight: 600; }
.plato-descripcion { color: var(--text-muted); font-size: 0.88rem; }

/* ---------- Hamburguesas Opción A: overlay-gradiente destacadas ---------- */
.burger-featured { position: relative; height: 340px; overflow: hidden; border-radius: 4px; }
.burger-featured img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.burger-featured:hover img { transform: scale(1.08); }
.burger-featured::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 60%); }
.burger-featured .bf-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 20px; }
.burger-featured h4 { font-family: 'Manrope', sans-serif; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 0.2rem; }
.burger-featured .bf-precio { color: var(--accent); font-weight: 700; }

/* ---------- Hamburguesas Opción B: horizontal con descripción ---------- */
.burger-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--outline-subtle); align-items: center; }
.burger-row img { width: 110px; height: 110px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.burger-row .br-top { display: flex; justify-content: space-between; align-items: baseline; }
.burger-row h5 { font-family: 'Playfair Display', serif; margin-bottom: 0.2rem; }
.burger-row .br-precio { color: var(--accent); font-weight: 700; }
.burger-row p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0; }
.burger-row .modificadores span { font-size: 0.7rem; border: 1px solid var(--outline-subtle); padding: 0.15rem 0.5rem; border-radius: 100px; color: var(--text-muted); margin-right: 4px; }

/* ---------- Testimonios ---------- */
.testi-comida { background: var(--surface); padding: 30px; border: 1px solid var(--outline-subtle); text-align: center; height: 100%; }
.testi-comida img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; }
.testi-comida p.quote { color: var(--text-muted); font-style: italic; }
.testi-comida h6 { color: var(--accent); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.04em; }

/* ---------- Banner delivery ---------- */
.delivery-banner { background: var(--surface); overflow: hidden; }
.delivery-banner img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

/* ---------- Zona de entrega (placeholder) ---------- */
.zona-entrega { background: var(--bg); border: 1px dashed var(--outline-subtle); padding: 32px; text-align: center; border-radius: 8px; }
