/* stove cooks portfolio */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f2ee;
  color: #111;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  line-height: 1.7;
  padding: 3rem 1.5rem;
}

main {
  max-width: 680px;
  margin: 0 auto;
}

section {
  margin-bottom: 2.5rem;
}

/* ── hero ── */

.greeting {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
}

.tagline {
  color: #888;
  font-size: 0.9rem;
}

/* ── section headings ── */

.section-heading {
  font-size: 0.9rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 0.75rem;
}

/* ── item lists (dishes + kitchens) ── */

.item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.item-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
}

.item-link {
  color: #c0392b;
  text-decoration: none;
  font-weight: bold;
}

.item-link:hover {
  text-decoration: underline;
}

.item-sep {
  color: #aaa;
}

.item-desc {
  color: #333;
}

/* ── ingredients ── */

.ingredient-groups {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ingredient-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: baseline;
}

.group-label {
  color: #888;
  font-size: 0.85rem;
  min-width: 110px;
}

.group-items {
  color: #333;
}

/* ── contact ── */

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
}

.contact-label {
  color: #c0392b;
  text-decoration: none;
  font-weight: bold;
}

.contact-label:hover {
  text-decoration: underline;
}

.contact-sep {
  color: #aaa;
}

.contact-handle {
  color: #333;
}

/* ── responsive ── */

@media (max-width: 600px) {
  body {
    padding: 2rem 1rem;
  }

  .name {
    font-size: 1.5rem;
  }

  .group-label {
    min-width: unset;
    width: 100%;
  }
}
