/* ---------- Airbnb Style All Listings Page ---------- */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
}

/* Container */
.listings-container {
  max-width: 1900px;
 
  margin: 3rem auto;
  padding: 0 20px;
}

/* Grid layout */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

/* Each card */
.listing-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  padding: 15px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  
}

/* Hover effect */
.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Image styling */
.listing-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* Title styling */
.listing-card h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  text-align: center;
}

/* Responsive */
@media (max-width: 576px) {
  .listing-card img {
    height: 160px;
  }
}



