/* Caucasus tours page styles */

.tour-card {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tour-card-content {
  padding: 20px;
}

.tour-card h3 {
  margin-top: 0;
  color: #0d2d62;
  font-size: 22px;
  margin-bottom: 10px;
}

.tour-card p {
  color: #666;
  margin-bottom: 15px;
}

.tour-price {
  font-weight: bold;
  color: #e91e63;
  font-size: 18px;
  margin-bottom: 15px;
  display: block;
}

.btn-primary {
  background: #e91e63;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #c2185b;
}

.price-list-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.price-list-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.price-list-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.tour-details-section {
  background: #f9f9f9;
  padding: 40px 0;
}

.tour-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tour-description {
  margin-bottom: 30px;
}

.tour-description h2 {
  color: #0d2d62;
  margin-bottom: 15px;
}

#show-price-list {
  cursor: pointer;
  background: #ff5722;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  margin-top: 20px;
  display: inline-block;
}

/* Grid layout for tours */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
  
  .tour-card img {
    height: 200px;
  }
} 