:root {
  --color-bg: #fff3e5;              /* naranja muy suave */
  --color-bg-soft: #ffe4cc;         /* un poco más intenso para bloques */
  --color-primary: #ff7b3a;         /* naranja principal */
  --color-primary-dark: #e6641f;
  --color-accent: #ff9c5c;
  --color-text: #351707;
  --color-muted: #7a5a44;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.18);
  --max-width: 980px;
  --display-font: 'Montserrat', sans-serif; /* default for headings/hero */
  --body-font: 'Rubik', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 'Helvetica Neue', Arial; /* body font */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* Layout base */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

.btn-ghost:hover {
  background: rgba(255, 123, 58, 0.08);
}

.btn-block {
  width: 100%;
}

/* Top bar */

.top-bar {
  background: rgba(255, 243, 229, 0.9);
  border-bottom: 1px solid rgba(255, 123, 58, 0.25);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.85rem;
}

.top-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 30% 20%, #ffd2b2, #ff7b3a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.top-logo-text {
  font-weight: 600;
  color: var(--color-text);
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-muted);
}

.top-contact a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

/* Hero con video */

.hero-landing {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 1.2rem 0 2.5rem;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
                to right,
                rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0.35),
                rgba(0, 0, 0, 0.4)
              ),
              radial-gradient(circle at top, rgba(0, 0, 0, 0.35), transparent 55%);
  z-index: 1;
}

/* Contenido hero */

.hero-landing-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  align-items: center;
  color: #ffffff;
}

.hero-copy {
  max-width: 540px;
}

.hero-tag {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffe6cf;
  margin-bottom: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin: 0 0 0.6rem;
}

/* Display / headings styling — use --display-font; provide utility classes to switch quickly */
h1, h2, h3, .hero-badge-title, .hero-copy h1, .menu-section-title, .menu-name {
  font-family: var(--display-font);
}

/* Helpers: switch display font quickly by adding a class to <body> */
.font-orbitron { --display-font: 'Orbitron', sans-serif; }
.font-bungee   { --display-font: 'Bungee', sans-serif; }
.font-russo    { --display-font: 'Russo One', sans-serif; }

.hero-sub {
  margin: 0 0 1.3rem;
  color: #fef5ec;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-ctas .btn {
  font-size: 0.9rem;
}

.hero-apps {
  font-size: 0.82rem;
  color: #f9e0c9;
  margin-bottom: 0.8rem;
}

.hero-app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.app-pill {
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  color: #ffffff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.35);
}

/* Badges para plataformas de delivery (Rappi / PedidosYa) */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;                 /* no button padding */
  border-radius: 0;          /* no pill corners */
  font-weight: 700;
  font-size: 0;               /* hide any text sizing; we'll hide spans */
  color: inherit;
  text-decoration: none;
}
.app-badge img, .app-badge svg { width: 50px; height: 50px; display:block; object-fit:contain }
.app-badge span { display: none; } /* hide label text — only show logo */
.app-badge--rappi{ background: transparent; }
.app-badge--pedidosya{ background: transparent; }
.app-badge--rappi:hover, .app-badge--pedidosya:hover{ opacity: 0.95; transform: none; }

/* Sitios donde colocamos los badges: tamaño en el footer y menu */
.app-badge.small{ padding:0; font-size:0; gap:0.2rem }
.app-badge.small img, .app-badge.small svg { width: 50px; height: 50px; }

/* Footer layout: separador pequeño para las plataformas */
.footer-contact .platforms{
  display:flex; align-items:center; gap:0.45rem; margin-top:0.45rem; flex-wrap:wrap;
}

.hero-info-line {
  font-size: 0.83rem;
  color: #fbe4cd;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.2rem;
}

.hero-info-line span:first-child {
  color: #ffffff;
  font-weight: 600;
}

/* Badge lateral */

.hero-badge {
  display: flex;
  justify-content: flex-end;
}

.hero-badge-inner {
  background: radial-gradient(circle at top, rgba(255, 211, 175, 0.55), rgba(0, 0, 0, 0.75));
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  max-width: 320px;
  border: 1px solid rgba(255, 199, 160, 0.7);
  box-shadow: var(--shadow-soft);
  color: #fff7ef;
}

.hero-badge-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.hero-badge-sub {
  font-size: 0.85rem;
}

/* Sección carta rápida */

.section-head {
  margin-bottom: 1.4rem;
}

.section-head h2 {
  margin: 0 0 0.2rem;
  font-size: 1.6rem;
}

.section-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.section-head-center {
  text-align: center;
}

.quick-menu {
  padding: 2rem 0 1.8rem;
  background: var(--color-bg-soft);
}

/* --- Página de menú: estilos específicos --- */
.menu-hero {
  padding: 1.4rem 0 0.6rem;
  background: linear-gradient(180deg, rgba(255,247,240,0.9), rgba(255,236,220,0.9));
}

.menu-main {
  padding: 1.6rem 0 2.4rem;
}

.menu-section-title {
  font-size: 1.15rem;
  margin: 0 0 0.8rem;
  color: var(--color-text);
  font-weight: 700;
}

.menu-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.menu-featured-item {
  background: linear-gradient(180deg, #fff9f4, #fff3ea);
  border: 1px solid rgba(255,123,58,0.14);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column; /* nombre > descripcion > precio */
  align-items: stretch;
  gap: 0.8rem;
}

.menu-left {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-width: 0;
}

.menu-featured-item .menu-name {
  color: var(--color-text);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.9vw, 1.25rem); /* un poco más grande */
}

.menu-featured-item .menu-price {
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  margin-top: 0.35rem;
  align-self: flex-end; /* price at the end / right aligned */
}

/* Descripciones más pequeñas y con peso regular */
.menu-desc {
  display: block;
  margin-top: 0.25rem;
  color: var(--color-muted);
  font-weight: 400; /* regular */
  font-size: 11px; /* tamaño pedido */
  line-height: 1.3;
}

@media (max-width: 420px) {
  .menu-desc {
    font-size: 10px; /* versión móvil */
  }
}

.menu-others {
  margin-top: 0.4rem;
}

.menu-basic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.basic-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: #fffaf4;
  border: 1px solid rgba(255,123,58,0.08);
  font-size: 0.95rem; /* lista básica: ligeramente más pequeña */
}

.basic-item .price {
  font-weight: 700;
  color: var(--color-muted);
}

@media (max-width: 720px) {
  .menu-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .menu-basic-list {
    grid-template-columns: 1fr;
  }
}

.quick-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dish-mini {
  background: #fffaf4;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 123, 58, 0.18);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Contenedor de imagen de plato - regula tamaños distintos */
.dish-mini-media {
  width: 100%;
  height: 150px;              /* altura fija para todos los platos */
  overflow: hidden;
}

.dish-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* recorta sin deformar, aunque la foto sea rara */
  display: block;
}

.dish-mini-body {
  padding: 0.9rem 0.9rem 0.85rem;
}

.dish-mini-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.dish-mini-header h3 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text);
}

.dish-mini-price {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.dish-mini-desc {
  margin: 0 0 0.6rem;
  color: #5c3923;
  font-size: 0.87rem;
}

.dish-mini-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-primary);
  font-size: 0.8rem;
  text-decoration: none;
  color: #ffffff;
  background: var(--color-primary);
}

.dish-mini-btn:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.small-note {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.small-note a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

/* styling for the menu link in the landing small-note */
.small-note .menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.small-note .menu-link:hover {
  text-decoration: underline;
}

/* Tira de fotos / Galería */

.photo-strip {
  padding: 2rem 0 2rem;
  background: var(--color-bg);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-item {
  background: #fffaf4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 123, 58, 0.18);
  position: relative; /* necesario para superponer etiqueta */
}

/* Aquí igualamos las fotos de distintos tamaños */
.photo-item img {
  width: 100%;
  aspect-ratio: 4 / 3;     /* mantiene proporción uniforme */
  height: 100%;
  object-fit: cover;        /* recorta sin deformar */
  display: block;
}

/* Texto grande y semitransparente sobre cada foto */
.photo-label {
  position: absolute;
  /* centrado absoluto dentro de la foto */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7); /* 20% más transparente (de 0.9 -> 0.7) */
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  pointer-events: none;
  /* asegurar que la palabra quepa en la foto: tamaño más contenido y ancho limitado */
  white-space: nowrap;
  overflow: visible; /* permitimos visibilidad si queda muy justo (confianza en tamaño) */
  padding: 0 0.4rem; /* pequeño breathing space */
  max-width: 75%; /* ancho limitado para que la palabra quepa y quede centrada */
  /* reducir el tamaño máximo y forzar adaptación: valores pensados para palabras cortas como LOCAL/DELIVERY/PREPARACIÓN/PRODUCTO */
  font-size: clamp(0.8rem, 1.9vw, 1.15rem);
  line-height: 1;
  text-shadow: 0 6px 18px rgba(0,0,0,0.55);
  opacity: 0.7;
}

/* Opcional: disminuir texto en pantallas muy pequeñas para legibilidad */
@media (max-width: 420px) {
  .photo-label {
    font-size: clamp(0.6rem, 3.2vw, 0.95rem);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
  }
}

/* Bloque confianza */

.trust-strip {
  padding: 1.8rem 0 2rem;
  background: var(--color-bg);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  gap: 1.6rem;
  align-items: center;
}

.trust-text h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
  color: var(--color-text);
}

.trust-text p {
  margin: 0 0 0.7rem;
  color: #5c3923;
}

.trust-text ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.trust-text li {
  margin-bottom: 0.25rem;
}

.trust-badge {
  display: flex;
  justify-content: flex-end;
}

.trust-card {
  background: #fffaf4;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
  border: 1px solid rgba(255, 123, 58, 0.25);
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
  color: var(--color-text);
}

.trust-title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.trust-card p {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
}

.trust-note {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Testimonios */

.reviews-strip {
  padding: 1.6rem 0 2.1rem;
  background: var(--color-bg-soft);
}

.reviews-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.review-mini {
  background: #fffaf4;
  border-radius: var(--radius-md);
  padding: 0.9rem 0.9rem 0.75rem;
  border: 1px solid rgba(255, 123, 58, 0.2);
  font-size: 0.86rem;
  color: var(--color-text);
}

.review-stars {
  color: var(--color-primary);   /* estrellas naranjas */
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.review-mini p {
  margin: 0 0 0.5rem;
  color: #5c3923;
}

.review-mini span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Footer */

.landing-footer {
  border-top: 1px solid rgba(255, 123, 58, 0.35);
  background: #ffe4cc;
  padding: 1.2rem 0 0.8rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--color-text);
}

.footer-logo {
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-contact p {
  margin: 0;
  color: var(--color-muted);
}

.footer-contact a {
  color: var(--color-primary-dark);
  text-decoration: none;
}

/* Enlaces en el footer: mantener color y aplicar efecto de hover (subrayado ligero o leve escala) */
.landing-footer a {
  color: inherit;           /* no usar azul por defecto */
  text-decoration: none;
  transition: transform 0.12s ease, text-decoration-color 0.12s, opacity 0.12s;
}
.landing-footer a:hover,
.landing-footer a:focus {
  text-decoration: underline; /* subraya en hover/focus */
  transform: translateY(-1px) scale(1.02); /* ligero crecimiento */
  outline: none;
}
.landing-footer a:active {
  transform: translateY(0) scale(1);
}

.footer-bottom {
  margin-top: 0.7rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 123, 58, 0.35);
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* Botón flotante de WhatsApp (desktop/tablet) */

.whatsapp-floating {
  position: fixed;
  inset: auto 1rem 1rem auto;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: #25d366;
  color: #111;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  z-index: 40;
}

.whatsapp-floating:hover {
  filter: brightness(1.05);
}

/* Barra móvil fija */

.mobile-cta-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  padding: 0.6rem 1rem;
  z-index: 30;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

.mobile-cta-bar a {
  display: block;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Responsivo */

@media (max-width: 900px) {
  .hero-landing-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-badge {
    justify-content: flex-start;
  }

  .trust-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .trust-badge {
    justify-content: flex-start;
  }

  .quick-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-landing {
    min-height: 80vh;
  }
}

@media (max-width: 720px) {
  .quick-menu-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reviews-mini-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .photo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
  }

  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .mobile-cta-bar {
    display: block;
  }

  .whatsapp-floating {
    display: none;
  }

  body {
    padding-bottom: 52px; /* espacio para la barra móvil */
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }
}


.decorative-chopsticks{
  /* Centrado horizontal y comportamiento responsivo */
  display: block;           /* para que margin:auto funcione */
  width: 320px;             /* tamaño base en desktop */
  max-width: 90vw;         /* evita overflow en pantallas pequeñas */
  height: auto;
  margin: 0 auto;          /* centra horizontalmente */
  z-index: 5;
  pointer-events: none;
}