/* DESTACADOS */
.color-destacado {
  color: #EE902F;
}

/* PROMOS */
.promo-elegant {
  max-width: 520px;
  margin: 5px auto;
  padding: 35px;
  background: rgba(20, 20, 20, 0.6); /* gris oscuro + transparencia */
  color: #3a2b22;
  border-radius: 18px;
  border: 3px solid #c3a67a;
  box-shadow: 0 0 25px rgba(0,0,0,0.15);
  font-family: "Garamond", "Times New Roman", serif;
  text-align: center;
  position: relative;
}

.promo-elegant:before,
.promo-elegant:after {
  content: "❧";
  font-size: 38px;
  color: #c3a67a;
  position: absolute;
}

.promo-elegant:before {
  top: -25px;
  left: 20px;
}

.promo-elegant:after {
  bottom: -25px;
  right: 20px;
}
.promo-wrap {
  margin-top: 50px;

  text-align: center; /* centra elementos inline/inline-flex hijos */
}
.promo-title {
  font-size: 32px;
  margin-bottom: 8px;
    font-family: "Bebas Neue", sans-serif;
    background-color: #1d1d1d;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-flex;      /* inline-flex = solo tan ancho como el contenido */
    align-items: center;       /* centra verticalmente */
    gap: 12px;   
    background-color: #EE902F;              /* espacio entre columnas */
    text-align: center;

  }

.promo-subtitle {
  
  font-family: "Dancing Script", cursive;
  font-style: italic; /* cursiva */
  font-weight: 400;
  opacity: 0.8; /* ligeramente desvanecido */
  text-shadow: 1px 1px 0px #1c1c1c;  color: #EE902F;              /* espacio entre columnas */
font-size: 3em;
}

.promo-list {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  line-height: 1.7;
}
.promo-list > p{
  margin: 0px;
}

.promo-desc{
  color: silver;
}

.promo-highlight {
  color: #ffffff;
}

.promo-price {
  font-family: "Bebas Neue", sans-serif;
  background-color: #1d1d1d;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-flex;      /* inline-flex = solo tan ancho como el contenido */
  align-items: center;       /* centra verticalmente */
  gap: 12px;   
  background-color: #EE902F;      0        /* espacio entre columnas */
}


.promo-price .price {
  font-size: 2.5rem;       /* tamaño grande para el precio */
}

.promo-price .per-person {
  font-size: 1.5rem;       /* tamaño más pequeño para el texto */
  text-align: center;       /* texto alineado a la derecha de su columna */
  line-height: 1.1;
}


.promo-total {
  font-family: "Bebas Neue", sans-serif;

  margin-top: 8px;
  font-size: 18px;
}

/* Mini promos fila */
.promo-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 20px 0;
}

.promo {
  text-align: center;
  font-size: 18px;
}

.promo small {
  font-size: 14px;
  color: #666;
}

/* BODY */
body {
  font-family: "Bebas Neue", sans-serif;
  color: #f9f9f9;
  margin: 0;
  padding: 0;
}
body {
  background-image: url("/madera-gris.jpg");
  background-size: cover;       /* que cubra toda la pantalla */
  background-repeat: no-repeat;
  background-attachment: fixed; /* para efecto elegante */
  background-position: center;
  color: white;
  margin: 0;
}

/* SECCIÓN MENÚ */
.menu-section {
  max-width: 650px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.backgorund-list{
  background: rgba(20, 20, 20, 0.6); /* gris oscuro + transparencia */
  max-width: 650px;
  margin: 60px auto;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.menu-title {
  text-align: center;
  font-size: 3em;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 0px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* FILA DE MENÚ */
.menu-item {
  display: grid;
  grid-template-columns: 7.7fr 0.8fr 0.8fr 0.8fr;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px dotted #ccc;
  align-items: start;
}

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

/* HEADER DE COLUMNAS */
.menu-header {
  display: grid;
  grid-template-columns: 90fr 20fr 20fr 20fr;
  padding: 8px 0;
  text-align: right;
  border-bottom: 2px solid #000;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.menu-header span:first-child {
  text-align: left;
}

/* INFO */
.menu-info {
  grid-column: 1;
}

.menu-name {
  text-transform: capitalize;
  font-size: 2rem;
}

/* PRECIOS */
.menu-prices {
  display: contents;
}

.menu-price:not(:empty) {
  background-color: #1d1d1d;
  padding: 3px 8px;
  border-radius: 6px;
  color: white;
  font-size: 1.5em;
  display: inline-block;
  margin-right: 6px;
  text-align: right;
}

.menu-price.ind { grid-column: 2; }
.menu-price.corazon { grid-column: 3; }

.menu-price.chica::before {
  content: "Chica ";
  color: #777;
  font-weight: 400;
  font-size: 0.9em;
}

.menu-price.mediana::before {
  content: "Mediana ";
  color: #777;
  font-weight: 400;
  font-size: 0.9em;
}

.menu-price.grande { grid-column: 4; }

.menu-price.grande::before {
  content: "Grande ";
  color: #777;
  font-weight: 400;
  font-size: 0.9em;
}

/* DETALLES */
.small {
  color: #ffffff;
  font-size: 1.5em;
}
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400; /* Normal, puedes usar 700 para más negrita */
  font-style: normal;
}
.titulo {
  font-size: 5rem; /* 1rem = tamaño de fuente base (normalmente 16px) */
  text-align: center;
  transform: scaleY(2); /* 1.5 veces más altas */
  margin-bottom: 15px;
  margin-top: 15px;
}

.titulo .al {
  color: #ff0000; /* ejemplo de estilo para la palabra "al" */
  font-weight: bold;
}
.header-text {
  padding: 0 26%; /* 10% de ancho de la pantalla a cada lado */
}
.r1 {
}
.r2 {
}
.r3 {
  font-size: 5rem; /* más grande para títulos */
}
.r4 {
  margin: 0px;
}
.color-red {
  color: red; /* texto en rojo */
}
.cursiva-gastada {
  font-family: "Dancing Script", cursive;
  font-style: italic; /* cursiva */
  font-weight: 400;
  opacity: 0.8; /* ligeramente desvanecido */
  text-shadow: 1px 1px 0px #bbb; /* efecto “gastado” */
}
.playfair-display-fina {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400; /* normal, también podés usar 300 o 500 si querés más fino */
  font-style: normal;
  transform: scaleX(0.7); /* opcional, para hacer las llaves más finas */
  color: red; /* texto en rojo */
}
.anniversary {
  text-align: center;
  color: red; /* texto en rojo */
  font-weight: bold; /* opcional, para resaltar */
  font-size: 1.5rem; /* opcional, ajusta tamaño */
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  align-items: center; /* centra horizontalmente */
  gap: 12px;
  margin-top: 30px;
}

.menu-button {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: #333;
  background-color: #ffcc00;

  cursor: pointer;
  transition: all 0.3s ease;

  width: 300px; /* ancho fijo igual para todos */
  text-align: center; /* centra el texto dentro del div */
  padding: 12px 0; /* espacio arriba y abajo */
}

.menu-button:hover {
  transform: scale(1.05);
}

   /* Colores */
   .color-gold-glow {
    color: #ffcc00;
  }
  .color-black {
    color: black;
  }
  .color-silver {
    color: silver;
  }

  .centered {
    display: flex;
    flex-direction: column;
    align-items: center; /* centra horizontalmente */
    text-align: center; /* centra el texto dentro de cada elemento */
    gap: 10px; /* espacio entre elementos */
    margin-top: 30px;
  }

  /* Fuente grande para PROMOCIONES */
  .promociones-title {
    font-family: "Bebas Neue", sans-serif; /* o la fuente que uses */
    font-size: 70px; /* tamaño más grande */
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .sin-margin {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .cursiva-eat {
    font-size: 25px;
  }