/* === Base Styles === */
body {
  font-family: Arial, sans-serif;
  background-color: #fdfbf7;
  color: #333;
  text-align: center;
  margin: 0;
  width: 85vw;
  max-width: 1600px;      /* Limits width on huge screens, adjust as desired */
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
}

/* menu.html tweaks */
body.menu-page {
  max-width: none; /* Removes the limit if you want menu.html to go full-bleed */
}

/* Fluid images */
img {
  max-width: 100%;
  height: auto;
}

/* === Typography === */
h1, h2, h3 {
  font-family: 'Times New Roman', serif;
  color: #4e3300;
  margin: 1rem 0 0.5rem;
}
h1 { font-size: 2rem; line-height: 1.2; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }

p, li {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.75rem auto;
  max-width: 1200px;
  text-align: center;
}
.base-label {
  font-size: 1.25rem;
  margin: 0 0 .5rem;
  text-align: left;
}
.base-includes {
  font-size: 1.1rem;
  margin: .25rem 0 1rem;
  text-align: left;
}

/* Links */
a {
  color: #cc6600;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === Site Header & Logo™ === */
.site-header {
  text-align: center;
  padding: 2rem 1rem;
}
.logo-wrap {
  display: inline-flex;
  align-items: flex-start;
  margin: 0 auto 2rem;
}
.site-logo {
  max-width: 300px;
  height: auto;
}
.tm {
  font-size: 0.6em;
  margin-left: 0.2em;
  vertical-align: top;
  color: rgba(0,0,0,0.6);
}

/* === Menu Layout === */
.menu-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;  /* Limit for menu grid */
  margin: 0 auto;
  padding: 1rem 0;
  width: 100%;
}
.column {
  display: flex;
  flex-direction: column;
}

/* === Build Your Own Section === */
.build-section h2 { margin-bottom: 0; }
.tagline {
  font-style: italic;
  font-size: 0.8rem;
  margin: 0.25rem 0 1rem;
  text-align: center;
}
.base-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-left: -2rem;
}
.base-icon { width: 200px; height: 200px; }
.base-desc p { margin: 0.25rem 0; }
.add-toppings { font-size: 1.25rem; margin: 2rem 0 1rem; }

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Only preset details get flex */
.preset-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
}

/* Sides/Drinks/Sweets prices stay inline/left */
.menu-content > .column > ul > li {
  text-align: left;
}
.menu-content > .column > ul > li .price {
  display: inline;
  margin-left: 0.5em;
  font-weight: normal !important;
  font-size: inherit !important;
  color: inherit !important;
  float: none !important;
  padding: 0 !important;
  min-width: 2em;
}
.menu-content ul li .icon,
.menu-content ul li .vegan-mark,
.menu-content ul li .drinks-icon {
  vertical-align: middle;
  margin-right: 0.4em;
}
.icon { width: 64px; height: 64px; }
.icon.vegan-mark,
.icon.spicy-icon { width: 24px; height: 24px; }
.drinks-icon { width: 40px; height: 48px; }
/* --- Menu-row layout for Sides, Drinks, and Sweets --- */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5em;
}

.menu-row .item-label {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.menu-row .price {
  flex: none;
  margin-left: 1em;
  font-weight: normal;
  font-size: inherit;
  color: inherit;
  text-align: left;
  min-width: 2.5em;
  display: inline-block;
}


/* ==== Presets Section ==== */
.preset-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.preset-image {
  width: 180px;
  height: 220px;
  flex-shrink: 0;
  object-fit: contain;
}
.preset-content {
  flex: 1;
}
.preset-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.preset-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #5a4406;
  margin: 0;
}
.preset-vegan {
  vertical-align: middle;
  width: 1.4em;
  height: 1.4em;
  margin-left: 0.5em;
}
.price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}
.preset-details {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.preset-details li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.3em;
  font-size: 1.08rem;
}
/* Sizing tweaks for special presets */
.preset-item.lilbro .preset-image {
  width: 190px;
  height: 200px;
}
.preset-item.bigpapa .preset-image {
  width: 210px;
  height: 230px;
}
.preset-item.greencousin .preset-image {
  width: 170px;
  height: 200px;
}
.preset-item.lilbro {
  margin-left: -23px;
}
.preset-item.bigpapa {
  margin-left: -45px;
}
.preset-item.greencousin {
  margin-left: -7px;
}

/* === Footer === */
.site-footer {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  color: #777;
}
.site-footer a {
  margin: 0 0.5em;
}
.social-icon {
  width: 16px;
  height: auto;
  vertical-align: top;
  margin-left: 0.3em;
}

/* === Responsive Breakpoints === */
@media (max-width: 1400px) {
  body, .menu-content {
    max-width: 98vw;
  }
}
@media (max-width: 1050px) {
  .menu-content {
    max-width: 100vw;
    grid-template-columns: 1fr;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
@media (max-width: 800px) {
  .menu-content {
    grid-template-columns: 1fr;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
  }
}
@media (max-width: 700px) {
  .preset-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .preset-image {
    width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
  }
  .preset-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .preset-title,
  .price {
    font-size: 1.05rem;
  }
}

/* --- Everything below must be INSIDE the 600px media query! --- */
@media (max-width: 600px) {
  .base-container {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
  .preset-item.lilbro {
    margin-left: 0;
  }
  .preset-item.bigpapa {
    margin-left: 0;
  }
  .preset-item.greencousin {
    margin-left: 0;
  }
  .base-icon { width: 120px; height: 120px; }
  .icon { width: 48px; height: 48px; }
  .icon.vegan-mark,
  .icon.spicy-icon { width: 18px; height: 18px; }
  .drinks-icon { width: 32px; height: 32px; }
  .preset-icon { width: 150px; height: auto; }
  .preset-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .slogan, .tagline, .add-toppings, h2 {
    font-size: 1rem;
  }
}
