/*card container*/
.card-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 10px 20px 10px;
  max-width: 1500px;
}

.tour-card {
  width: 430px;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
}

.tour-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.tour-card .content {
  padding: 15px;
}


.tour-title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: var(--primary-color);
}


.price-book {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 24px;
  color: var(--black);
  font-weight: 700; 
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 10px;
}

.section-heading h2 {
  font-size: 28px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.route-map {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid #ddd;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
  }

  .tour-card {
    width: 90%;
  }
}

.tour-title-link {
  text-decoration: none;
  color: inherit;
}

.book-btn {
  display: inline-block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 14px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: var(--secondary-hover-color);
}

.btn-btn-book {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f0c32e;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
}