.hero-banner {
  background-image: url('img/Day\ trip.jpg'); 
   background-size: cover;
  background-position: center;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 59, 104, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  color: white;
  font-size: 39px;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  line-height: 1.4;
}


.tours-section {
  padding: 40px 20px;
  text-align: center;
}

.tours-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #333;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.tour-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-card h3 {
  margin: 15px 0 5px;
  color: #333;
}

.tour-card p {
  color: #777;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin-bottom: 15px;
  padding: 4px 10px;
  background: #0f62a0;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0056b3;
}
