/* ===========================
   Tours Archive Page Styles
   =========================== */

.tours-archive-section {
  background: #f7f7f7;
  padding: 80px 20px;
  font-family: "Cormorant Garamond", serif;
  min-height: 60vh;
}

.tours-archive-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Category Filter */
.tour-categories-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.category-btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Cormorant Garamond", serif;
}

.category-btn:hover,
.category-btn.active {
  background: #000;
  color: #fff;
}

/* Tours Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.1);
}

.tour-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 15px;
  background: #f5c842;
  color: #000;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.tour-card-content {
  padding: 25px;
}

.tour-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.tour-card-title a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tour-card-title a:hover {
  color: #f5c842;
}

.tour-card-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tour-card-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.meta-item {
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-item i {
  color: #f5c842;
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
}

.btn-view-tour {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Cormorant Garamond", serif;
}

.btn-view-tour:hover {
  background: #f5c842;
  border-color: #f5c842;
  color: #000;
}

/* Pagination */
.tours-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.tours-pagination .page-numbers {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.tours-pagination .page-numbers li {
  display: inline-block;
}

.tours-pagination a,
.tours-pagination span {
  display: inline-block;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tours-pagination a:hover,
.tours-pagination .current {
  background: #000;
  color: #fff;
}

/* No Tours Found */
.no-tours-found {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 8px;
}

.no-tours-found h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.no-tours-found p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}

.btn-back-home {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  background: #000;
  border: 2px solid #000;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Cormorant Garamond", serif;
}

.btn-back-home:hover {
  background: #f5c842;
  border-color: #f5c842;
  color: #000;
}

/* Responsive */
@media (max-width: 992px) {
  .tours-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }

  .tour-card-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .tours-archive-section {
    padding: 60px 15px;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }

  .tour-categories-filter {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .category-btn {
    white-space: nowrap;
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .tour-card-content {
    padding: 20px;
  }

  .tour-card-title {
    font-size: 1.3rem;
  }

  .tour-card-footer {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .btn-view-tour {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .tour-card-image {
    height: 200px;
  }

  .tour-card-meta {
    flex-direction: column;
    gap: 10px;
  }
}
