/* Section */
.nearby-section {
  padding: 80px 0;
  background: #f9fbfc;
}

/* Heading */
.nearby-heading {
  text-align: center;
  margin-bottom: 50px;
}

.nearby-heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #6b2e00;
  margin-bottom: 15px;
}

.nearby-heading p {
  font-size: 16.5px;
  color: #555;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* Place Cards - Match room-card */
.place-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
}

.place-card:hover {
  transform: translateY(-6px);
}

.place-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  object-fit: cover;
  background: linear-gradient(45deg, #6e2611, #a57c1b); /* Placeholder gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.place-content {
  padding: 25px;
}

.place-content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #6b2e00;
  margin-bottom: 12px;
}

.place-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.place-btn {
  background: #6e2611;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
}

.place-btn:hover {
  background: #a57c1b;
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nearby-hero h1 {
    font-size: 2.5rem;
  }
  .nearby-hero p {
    font-size: 1.1rem;
  }
  .nearby-heading h2 {
    font-size: 32px;
  }
}
