/* ========================================
   MAHARAJAH TOURS - HOME PAGE
   Tour Cards Only
   ======================================== */

/* ========== TOUR CARDS (HOMEPAGE) ========== */
.tour-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  border: none;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.tour-card .card-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.tour-card .card-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .card-img-wrapper::after {
  opacity: 1;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--brand-gold) 0%, #c09b2d 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  z-index: 10;
  letter-spacing: 0.3px;
}

.tour-card .card-body {
  padding: 1.75rem;
}

.tour-card .card-title {
  font-size: 1.4rem;
  color: var(--brand-burgundy);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.tour-card .card-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
