@import "fontawesome.min.css";

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #fdf6ee;
  color: #2c2c2c;
  line-height: 1.6;
  padding: 2rem 1rem;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
}
h1 {
  font-size: 2rem;
  color: #b33a2c;
  margin-bottom: 0.25rem;
}
.subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f0e0d0;
  padding-bottom: 0.75rem;
}
h2 {
  font-size: 1.3rem;
  color: #b33a2c;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
p { margin-bottom: 0.75rem; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  background: #faf3eb;
  border-radius: 12px;
  padding: 1rem;
  margin: 1rem 0;
}
.info-grid dt { font-weight: 600; color: #b33a2c; }
.info-grid dd { margin-left: 0; }
.contact {
  background: #b33a2c;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  margin: 1.5rem 0;
}
.contact a { color: #fff; text-decoration: underline; }
ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
li { margin-bottom: 0.3rem; }
.footer {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  margin-top: 2rem;
  border-top: 1px solid #e0d0c0;
  padding-top: 1rem;
}
@media (max-width: 500px) {
  .info-grid { grid-template-columns: 1fr; }
}
.link-buttons {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.btn-facebook { background-color: #1877F2; }
.btn-facebook:hover { background-color: #0e5fd8; }

.btn-maps { background-color: #4285F4; }
.btn-maps:hover { background-color: #2a6dd9; }

.btn-yelp { background-color: #d32323; }
.btn-yelp:hover { background-color: #b01c1c; }

@media (max-width: 500px) {
  .link-buttons { flex-direction: column; }
}

.category-title {
  font-size: 1.1rem;
  color: #b33a2c;
  border-bottom: 2px solid #f0e0d0;
  padding-bottom: 0.25rem;
  margin-bottom: 0.75rem;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-item {
  display: flex;
  flex-direction: column;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f5ede3;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.item-name {
  font-weight: 500;
}

.item-price {
  font-weight: 600;
  color: #b33a2c;
  white-space: nowrap;
}

.item-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.addon {
  font-size: 0.85rem;
  color: #666;
  background: #faf3eb;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
}
.press-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.press-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: #faf3eb;
  border-radius: 8px;
  text-decoration: none;
  color: #b33a2c;
  font-weight: 500;
  border-left: 3px solid #b33a2c;
}

.press-link:hover {
  background: #f0e0d0;
}
.diner-photo {
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0 1.5rem;
  object-fit: cover;
  max-height: 300px;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0;
  width: 100%;
}
