/* Responsive two-column layout */
.restaurant-card-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  align-items: flex-start;
}

/* Each column stacks on mobile, splits on tablet+ */
.restaurant-info, .quick-facts {
  flex: 1 1 100%;
  min-width: 280px;
  box-sizing: border-box;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .restaurant-info, .quick-facts {
    flex: 1 1 48%;
  }
}

/* Styled tags for quick facts */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 4px;
}

/* Specific tag styles */
.mid-range {
  background-color: #fce5cd;
  color: #7c4700;
}

.locals-recommend {
  background-color: #e2e3ff;
  color: #3f3f99;
}

/* Disclaimer style */
.disclaimer {
  font-size: 0.9em;
  color: #666;
  margin-top: 20px;
}

/* List reset for dish highlights */
.quick-facts ul {
  margin: 5px 0 10px 20px;
  padding: 0;
}
/* 🌟 Navigation Styling */
.restaurant-nav {
  background-color: #fdf6e3;
  border: 1px solid #e5c97c;
  padding: 16px 24px;
  margin-bottom: 30px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 0.95em;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  text-align: center;
}

.restaurant-nav p {
  font-weight: 600;
  margin-bottom: 10px;
  color: #5c4600;
  font-size: 1rem;
}

.restaurant-nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.restaurant-nav li {
  margin: 0;
}

.restaurant-nav a {
  color: #5c4600;
  background-color: #fff8e5;
  border: 1px solid #e5c97c;
  border-radius: 5px;
  padding: 8px 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.restaurant-nav a:hover {
  background-color: #e5c97c;
  color: #000;
}

/* 🧭 Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* ⬇️ Scroll offset for anchor targeting */
:target {
  scroll-margin-top: 80px;
}
