/* Menu Template Styles */
.menu-page .menu-sections { padding: 30px 0 60px; }
.menu-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 28px; 
    align-items: start;
}
.menu-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.menu-section { background: #fff; border: 3px solid #000; border-radius: 8px; overflow: hidden; }
.menu-section-image img { width: 100%; height: auto; display: block; }
.menu-section-title { text-align: center; color: #cb3638; font-weight: 900; font-size: 32px; margin: 14px 0 6px; letter-spacing: 1px; }
.menu-section-desc { text-align: center; margin: 0 16px 12px; color: #000; }
.menu-items { list-style: none; margin: 0 16px 18px; padding: 0; }
.menu-item { padding: 12px 0; }
.menu-item:last-child { border-bottom: none; }
.menu-item-title { font-weight: 900; font-size: 18px; margin: 0 0 4px; color: #cb3638; text-transform: uppercase; font-family: Averia Serif Libre; }
.menu-item-desc { margin: 0; color: #000; font-size: 16px; line-height: 1.4; }

@media (max-width: 1024px) {
  .menu-grid { 
    grid-template-columns: 1fr; 
  }
  .menu-column {
    gap: 20px;
  }
}


