/* Menu PDF Page Styles */

.menu-content {
  margin-top: 40px;
  margin-bottom: 60px;
}

.menu-section {
  margin-bottom: 50px;
  clear: both;
}

.menu-section h2 {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #000;
  text-align: left;
  margin-bottom: 15px;
  margin-top: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

/* Main section headings - BREAKFAST, BRUNCH, DINNER */
.breakfast-section h2,
.brunch-section h2,
.dinner-section h2 {
  font-size: 64px;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 30px;
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
  clear: both;
}

.menu-main-items h2 {
  width: 100%;
  flex-basis: 100%;
}

.menu-section h3 {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.2;
  color: #000;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}

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

.menu-list li {
  margin-bottom: 18px;
  font-family: "museo-sans", sans-serif;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  padding: 0;
  position: relative;
}

.menu-list li strong {
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
}

.menu-list li .price {
  float: right;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  margin-left: 10px;
}

.menu-list li .description {
  display: block;
  margin-top: 5px;
  font-weight: 100;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  clear: both;
}

.menu-list li .dietary {
  font-size: 13px;
  color: #666;
  font-weight: 300;
  margin-left: 5px;
}

.menu-list li small {
  display: block;
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: 5px;
  font-weight: 100;
}

.menu-sidebar .menu-section small {
  display: block;
  font-size: 11px;
  color: #666;
  font-style: italic;
  margin-top: 8px;
  font-weight: 100;
  line-height: 1.4;
}

/* Two-column layout for Breakfast and Brunch */
.menu-section.breakfast-section,
.menu-section.brunch-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.menu-section.breakfast-section .menu-main-items,
.menu-section.brunch-section .menu-main-items {
  flex: 1 1 60%;
  min-width: 300px;
}

.menu-section.breakfast-section .menu-sidebar,
.menu-section.brunch-section .menu-sidebar {
  flex: 0 1 35%;
  min-width: 250px;
}

/* Dinner section - single column with subsections */
.menu-section.dinner-section {
  max-width: 100%;
}

.menu-section.dinner-section .menu-list li {
  margin-bottom: 18px;
}

/* SIPS and SIDES sections styling */
.menu-sidebar .menu-section {
  margin-bottom: 35px;
}

.menu-sidebar .menu-section:last-child {
  margin-bottom: 0;
}

.menu-sidebar .menu-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
  padding-bottom: 8px;
}

.menu-sidebar .menu-list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.menu-sidebar .menu-list li strong {
  font-size: 15px;
  margin-right: 0;
}

.menu-sidebar .menu-list li .price {
  float: right;
  font-size: 15px;
  text-align: right;
  margin-left: 10px;
}

.menu-sidebar .menu-list li .dietary {
  font-size: 11px;
  font-weight: 300;
  display: block;
  margin-top: 2px;
  margin-left: 0;
  line-height: 1.3;
  clear: both;
}

/* Menu legend and disclaimer */
.menu-legend {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "museo-sans", sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

.menu-legend .dietary {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 5px;
  font-size: 13px;
  color: #333;
}

.menu-disclaimer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  font-family: "museo-sans", sans-serif;
  font-weight: 100;
  font-size: 12px;
  line-height: 1.6;
  color: #666;
}

.menu-disclaimer small {
  font-size: 12px;
  line-height: 1.6;
}

/* Clear floats */
.menu-list li:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .menu-section.breakfast-section,
  .menu-section.brunch-section {
    flex-direction: column;
    gap: 30px;
  }
  
  .menu-section.breakfast-section .menu-main-items,
  .menu-section.brunch-section .menu-main-items,
  .menu-section.breakfast-section .menu-sidebar,
  .menu-section.brunch-section .menu-sidebar {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .menu-section h2 {
    font-size: 28px;
  }
  
  .menu-section h3 {
    font-size: 20px;
  }
  
  .menu-list li {
    font-size: 15px;
  }
  
  .menu-list li .description {
    font-size: 14px;
  }
}

