.restaurant-section {
  padding: 140px 0;
  background: #faf6f1;
}

.restaurant-wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}

.restaurant-image {
  flex: 1;
}

.restaurant-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.restaurant-text {
  flex: 1;
}

.restaurant-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #3d2f2f;
}

.restaurant-text p {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #666;
}

.btn-outline-dark {
  padding: 12px 28px;
  border: 2px solid #3d2f2f;
  color: #3d2f2f;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline-dark:hover {
  background: #3d2f2f;
  color: white;
}

@media (max-width: 900px) {
  .restaurant-wrapper {
    flex-direction: column;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }
}
