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

body {
  font-size: 1.2rem;
}

main {
  line-height: 1.65;
  font-size: 1.2rem;
  font-family: sans-serif;
  padding: 1rem;
  max-width: 800px;
  margin: auto;
}

details summary {
  text-align: center;
}

summary {
  border: 1px solid #000;
  font-size: 1.1rem;
  font-weight: 525;           /* Slightly bolder text */
  cursor: pointer;            /* Indicate it's clickable */
  user-select: none;          /* Prevent accidental text selection */
  margin-bottom: 11px;
  display: list-item;         /* Keep default summary styling */
  padding-bottom: 5px;
}

summary:hover {
  background-color: #373737; /* Slightly darker on hover/focus */
  color: #efefef;
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted #ccc;
}

.food-subtype {
  font-size: 1.25rem;
  font-weight: 600;
}

.social-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}

.social-card {
  display: flex;
  align-items: center;  
  gap: 10px;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid #000;
  transition: box-shadow 0.3s ease;
}

.social-card:hover {
  background-color: #373737;
}

.social-card img {
  width: 30px;
  height: 30px;
}

.social-card span {
  font-size: 1.2rem;
  color: #000;
  font-weight: 500;
}

.social-card:hover span {
  color: #efefef;
}

footer {
  text-align: center;
  margin-top: 40px;
  color: #999;
  font-size: 1rem;
}