body {
  background-color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
}

h2 {
  color: #fa5000;
  font-size: 32px;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 40px 20px;
}

.search-section {
  text-align: center;
  margin-bottom: 30px;
}

.search-section input {
  padding: 12px;
  width: 60%;
  max-width: 400px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.search-section button {
  padding: 12px 20px;
  margin-left: 10px;
  background-color: #fa5000;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.search-section button:hover {
  background-color: #fb6a26;
}

.venue-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}

.venue-card {
  flex: 1 1 calc(25% - 24px);
  max-width: calc(25% - 24px);
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.venue-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.venue-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-info {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.venue-card h4 {
  color: black;
  margin-bottom: 10px;
  font-size: 18px;
}

.venue-card p {
  margin: 6px 0;
  color: #555;
  font-size: 14px;
}

.card-buttons {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #eee;
}

.card-buttons .btn {
  flex: 1;
  max-width: 120px;
}

.btn {
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s;
  text-align: center;
}

.btn-primary {
  background-color: #fa5000;
  color: white;
}

.btn-primary:hover {
  background-color: #fb6a26;
}

.btn-secondary {
  background-color: #ffffff;
  color: #fa5000;
  border: 1px solid #fa5000;
}

.btn-secondary:hover {
  background-color: #fa5000;
  color: #ffffff;
}

#loadMore {
  display: block;
  margin: 40px auto;
  padding: 14px 32px;
  background-color: #fa5000;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

#loadMore:hover {
  background-color: #fb6a26;
}

/* Responsive */
@media (max-width: 1024px) {
  .venue-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .venue-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .venue-image {
    height: 200px;
    border-radius: 12px 12px 0 0;
  }

  .venue-info {
    border-radius: 0 0 12px 12px;
  }
  
  /* .card-buttons {
    flex-direction: column;
    align-items: center;
  }

  .card-buttons .btn {
    max-width: none;
    width: 100%;
  } */

  .card-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 12px;
  }

  .card-buttons .btn {
    flex: 1 1 45%;
    max-width: 160px;
    width: 100%;
    margin: 5px 0;
    font-size: 15px;
    padding: 12px 0;
    border-radius: 8px;
  }

  .venue-list {
    padding-left: 10px;
    padding-right: 10px;
  }

  .venue-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container p {
    text-align: center;
  }
}
