/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
.umami-menu {
  column-count: 3;
  column-gap: 2rem;
  max-width: 100%;
  margin: auto;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.umami-menu h2 {
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #b91c1c; /* Umami red */
  break-after: avoid-column;
}

.umami-menu ul {
  padding-left: 1rem;
  margin: 0 0 1rem;
  list-style-type: disc;
}

.umami-menu li {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

/* Responsive for tablet */
@media (max-width: 1024px) {
  .umami-menu {
    column-count: 2;
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .umami-menu {
    column-count: 1;
    padding: 1rem;
  }
}


.dinner-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 100%;
  margin: auto;
  padding: 0;
  font-family: sans-serif;
}

.menu-section h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #d6ae4c;
  padding-bottom: 0.25rem;
  text-transform: uppercase;
  color: #b11f1f;
}

.menu-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem 0;
}

.menu-section li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* 3 Columns on Desktop */
@media (min-width: 1024px) {
  .dinner-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.menu-col {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .menu-col {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

.menu-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f5c518;
  border-bottom: 2px solid #f5c518;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

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

.menu-list li {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

