/* ===============================
   TOUR CATEGORY SECTION
================================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: 0.4s;
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.category-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

/* TEXT */
.category-overlay h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.category-overlay p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* BUTTON */
.category-btn {
  display: inline-block;
  padding: 6px 14px;
  background: #ffcc00;
  color: black;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

/* COMING SOON */
.coming-badge {
  display: inline-block;
  padding: 5px 12px;
  background: red;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-10px);
}

.category-card:hover img {
  transform: scale(1.1);
}

/* DISABLE CLICK FOR COMING SOON */
.category-card.coming-soon {
  pointer-events: none;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}