/* Tours Page Styling */

.tours-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.tour-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  padding: 15px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.tour-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #003366;
}

.tour-card p {
  margin: 4px 0 10px;
  font-size: 15px;
  color: #444;
}

.tour-card .btn {
  display: inline-block;
  background: #005bbb;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.25s ease;
}

.tour-card .btn:hover {
  background: #003f7f;
}

/* Responsive */
@media (max-width: 600px) {
  .tour-card img {
    height: 150px;
  }
  .tour-card h3 {
    font-size: 18px;
  }
}
