/* Container */

.dining-overview{
    margin-top: 25px;
    text-align: center;
}








.restaurants {
  background-color: #fdfdfc;
  padding: 60px 20px;
  font-family: 'Georgia', serif;
}

.restaurants .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Restaurant Card */
.restaurant-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.restaurant-card.reverse {
  flex-direction: row-reverse;
}

/* Restaurant Image */
.restaurant-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.restaurant-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Restaurant Info */
.restaurant-info {
  flex: 1;
  min-width: 280px;
}

.restaurant-title {
  font-size: 3.0rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2b2b2b;
}

.restaurant-description {
  font-size: 2.0rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.restaurant-highlights {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.restaurant-highlights li {
  font-size: 1.9rem;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 10px;
  color: #333;
}

.restaurant-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c89f63; /* Gold tone */
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 900px) {
  .restaurant-card,
  .restaurant-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .restaurant-image,
  .restaurant-info {
    max-width: 100%;
  }

  .restaurant-info {
    margin-top: 20px;
  }
}
