/* Contenedor principal */
.syh-wrap {
  padding: 20px 30px;
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-header h1 {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.menu-header.show h1 {
  opacity: 1;
  transform: translateY(0);
}

.title-syh {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  margin: 0 0 16px;
  font-style: italic;
  letter-spacing: 4px;
}

.section-title {
  font-size: 15px;
  font-weight: 700; 
  margin: 0 0 20px 0;       
  padding: 8px 20px;
  background: #facc15;
  display: block;
  width: 70%;                  
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 4px;
  margin-left: -30px;            

  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.show {
  opacity: 1;
  transform: translateY(0);
}

.menu-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.menu-list li {
  position: relative;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.menu-list li.show {
  opacity: 1;
  transform: translateY(0);
}

.item-head {
  display: flex;
  justify-content: space-between;
  position: relative;  
}

.item-head.with-icon::before {
  content: "";
  position: absolute;
  left: -28px;         
  top: 50%;          
  transform: translateY(-50%); 
  width: 32px;   
  height: 32px;
  background: url("../images/chef.webp") no-repeat center;
  background-size: contain;
}

.item-head.with-icon-chile::before {
  content: "";
  position: absolute;
  left: -28px;         
  top: 50%;          
  transform: translateY(-50%); 
  width: 32px;   
  height: 32px;
  background: url("../images/chile.webp") no-repeat center;
  background-size: contain;
}

.item-desc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #555;
}

.menu-two-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.hero-top {
  height: 220px;
}
.hero-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom; 
  display: block;
}

.hero-bottom {
  margin: 0;
  padding: 0;
}

.hero-bottom img {
  width: 100%;
  height: 380px;          
  object-fit: cover;
  object-position: center bottom; 
  display: block;
}

/* Solo aplica en desktop */
@media (max-width: 768px) {
  .hero-bottom img {
    height: 220px;        
    object-position: center center;
    display: none;
  }
}

.col-menu .section-title {
  margin-left: 0;     
  transform: translateX(-30px); 
}

@media (min-width: 769px) {
  .menu-two-cols {
    grid-template-columns: 1fr 1fr; 
    gap: 32px;
  }
  .hero-top { display: none; }
  .hero-bottom { display: block; }
}
