:root {
  --color-bg-dark: #120608;
  --color-bg-light: #fbe9dd;
  --color-bg-accent: #4b1a1d;
  --color-primary: #c84532;
  --color-primary-dark: #8f251c;
  --color-text-main: #1a0c0d;
  --color-text-light: #fff8f3;
  --color-muted: #b18d7c;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
}

/* HOMENAJE AL DUEÑO */

.homenaje-dueno {
  max-width: 1100px;
  margin: 4.5rem auto 1.5rem;
  padding: 1.8rem 1.4rem 2rem;
  background: radial-gradient(circle at top left, #ffe2c9, #f4c1aa);
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.homenaje-marco {
  display: inline-block;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(135deg, #8f251c, #d88b3c);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}

.homenaje-foto {
  display: block;
  max-width: 340px;
  border-radius: 26px;
  border: 5px solid #fff4ea;
}

.homenaje-frase {
  margin-top: 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: #511c16;
  font-style: italic;
}

/* CABECERA */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  background: linear-gradient(90deg, #2a0b0e, #4b1a1d);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-light);
}

.logo-img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Por si quedara el badge en HTML, se oculta */
.logo-badge {
  display: none;
}

.logo-text h1 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.05em;
  font-size: 1.15rem;
  margin: 0;
}

.logo-text p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.nav-desktop {
  display: none;
  gap: 1.25rem;
}

.nav-desktop a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: #ffd38a;
  transition: width 0.25s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* Menú móvil */

.nav-toggle {
  width: 36px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: rgba(245, 233, 217, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0 7px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--color-text-light);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 56px;
  right: 0;
  background: #2a0b0e;
  width: 70%;
  max-width: 260px;
  height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: height 0.25s ease;
  box-shadow: -4px 12px 25px rgba(0, 0, 0, 0.6);
}

.nav-mobile.open {
  height: 260px;
  padding: 0.75rem 1rem 1rem;
}

.nav-mobile a {
  color: var(--color-text-light);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

/* HERO */

.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("hamburguesa.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.2) contrast(1.05);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 108, 72, 0.4), transparent),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(10, 0, 0, 0.92));
}

.hero-content {
  position: relative;
  max-width: 850px;
  padding: 2.2rem 1.5rem 3.5rem;
  text-align: center;
  animation: fadeUp 0.9s ease-out;
}

.hero-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.hero-content p {
  font-size: 0.98rem;
  max-width: 640px;
  margin: 0 auto 1.6rem;
  color: #ffe7d7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.78rem;
}

.hero-badges span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 211, 138, 0.4);
}

/* BOTONES */

.btn {
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff6c48, #c84532);
  color: var(--color-text-light);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 211, 138, 0.8);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* SECCIONES */

.section {
  padding: 3rem 1.25rem;
}

.section-light {
  background: var(--color-bg-light);
  color: var(--color-text-main);
}

.section-dark {
  background: #1b0507;
  color: var(--color-text-light);
}

.section-accent {
  background: #2a0b0e;
  color: var(--color-text-light);
}

.section-title {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.5rem;
  font-size: 1.8rem;
}

.section-title p {
  margin: 0;
  color: var(--color-muted);
}

/* CARTA – BLOQUES Y TARJETAS */

.menu-bloque {
  max-width: 1100px;
  margin: 0 auto 1.75rem;
}

.menu-bloque-titulo {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  color: #5b2620;
  font-family: "Playfair Display", serif;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}

.menu-card {
  background: #fff6ee;
  border-radius: 14px;
  border: 1px solid rgba(150, 86, 68, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15sease;
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

/* CABECERA DE TARJETA */

.menu-header {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

.menu-card[data-has-desc="true"] .menu-header::after {
  content: "▾";
  margin-left: 0.4rem;
  font-size: 0.75rem;
  color: #a06254;
}

.menu-card.open .menu-header::after {
  transform: rotate(180deg);
}

.menu-nombre {
  font-weight: 500;
}

.menu-precio {
  font-weight: 600;
  color: #8f251c;
  margin-left: auto;
  text-align: right;
}

.menu-desplegable {
  max-height: 0;
  overflow: hidden;
  padding: 0 0.8rem;
  font-size: 0.8rem;
  color: #7a4c40;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.menu-card.open .menu-desplegable {
  max-height: 80px;
  padding-bottom: 0.5rem;
}

/* TEXTO CARRILLADA Y RABO (fin de carta) */

.carta-destacado-fin-semana {
  margin: 1.5rem auto 0;
  padding: 0.75rem 1rem;
  max-width: 800px;
  border-radius: 999px;
  background: #5b2620;
  color: #ffe7d7;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}

/* ALMUERZO POPULAR */

.almuerzo-popular {
  background: #2a0b0e;
  color: var(--color-text-light);
}

.almuerzo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.almuerzo-detalle h3,
.almuerzo-ambiente h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.almuerzo-detalle ul {
  margin: 0 0 0.6rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
}

.almuerzo-detalle li {
  margin-bottom: 0.25rem;
}

.almuerzo-nota {
  font-size: 0.85rem;
  color: #ffd38a;
  margin-top: 0.4rem;
}

.almuerzo-ambiente p {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

/* UBICACIÓN */

.location-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.location-info h3 {
  margin-bottom: 0.4rem;
}

.location-info p {
  margin-top: 0;
  font-size: 0.9rem;
}

.schedule,
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.85rem;
}

.schedule li,
.features li {
  margin-bottom: 0.25rem;
}

.location-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-iframe {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

/* RESEÑAS */

.reviews-carousel {
  max-width: 900px;
  margin: 0 auto 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.reviews-track {
  position: relative;
  overflow: hidden;
  min-height: 150px;
}

.review {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: #3a1418;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  border-left: 3px solid #ff6c48;
}

.review.active {
  opacity: 1;
  transform: translateX(0);
}

.review h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.rating {
  margin: 0 0 0.5rem;
  color: #ffd86b;
  font-size: 0.9rem;
}

.review p {
  margin: 0;
  font-size: 0.85rem;
  color: #f8e1d7;
}

.carousel-btn {
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #ffe6cf;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.1s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-1px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.dot.active {
  background: #ffd86b;
}

/* QUIÉNES SOMOS */

.section-story {
  display: grid;
  gap: 1.75rem;
}

.story-text {
  max-width: 750px;
  margin: 0 auto;
}

.story-text h2 {
  font-family: "Playfair Display", serif;
}

.story-text p {
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
}

.story-highlight {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  background: #f7d6c3;
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.stat span {
  display: block;
  font-weight: 800;
  font-size: 1.3rem;
  color: #8f251c;
}

.stat small {
  font-size: 0.8rem;
  color: #6a3e34;
}

/* CONTACTO */

.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-btn {
  width: 100%;
  justify-content: center;
}

.btn-whatsapp {
  background: #25d366;
  color: #071b0c;
}

.btn-whatsapp:hover {
  background: #1eb157;
}

.price-range {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

.contact-form {
  background: #22070a;
  border-radius: 16px;
  padding: 1rem 1.2rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.contact-form p {
  margin-top: 0;
  font-size: 0.83rem;
  color: var(--color-muted);
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  margin-top: 0.6rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  border: 1px solid #4c2524;
  background: #140305;
  color: var(--color-text-light);
  font-family: inherit;
  font-size: 0.85rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--color-primary);
}

.form-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: var(--color-muted);
}

/* FOOTER */

.footer {
  text-align: center;
  padding: 1rem 1.25rem 1.4rem;
  background: #0b0203;
  color: #9a7767;
  font-size: 0.78rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  border-radius: 6px;
}

.footer-text p {
  margin: 0;
}

.footer-credits {
  font-size: 0.7rem;
  opacity: 0.7;
}

/* ANIMACIÓN */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .homenaje-dueno {
    margin-top: 5.5rem;
  }

  .header {
    padding: 0.7rem 2rem;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-toggle,
  .nav-mobile {
    display: none;
  }

  .hero-content {
    text-align: left;
    margin-left: 8%;
  }

  .section {
    padding: 3.5rem 2rem;
  }

  .location-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .section-story {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
    max-width: 1100px;
    margin: 0 auto;
  }

  

  .reviews-carousel {
    grid-template-columns: 40px 1fr 40px;
  }

  .almuerzo-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 95vh;
  }

  .hero-content h2 {
    font-size: 2.6rem;
  }
}
.email-btn {
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  margin-top: 0.4rem;
}
.contact-actions {
  text-align: center;
  max-width: 420px;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: center;
  justify-items: center;
}

.contact-actions {
  text-align: center;
  max-width: 420px;
}

.contact-btn {
  width: auto;
  min-width: 260px;
  justify-content: center;
}
