/* SECTION TITLE */
.section-title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}

/* TOURS GRID */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; /* ? controls space between ALL cards */
}





/* TOUR CARD */
.tour-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.tour-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.tour-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.tour-card p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* PRICE */
.price {
  font-weight: bold;
  margin-bottom: 10px;
}

/* BUTTON */
.tour-button {
  background-color: #2a3c8e;
  color: #ffffff;
  padding: 8px 12px;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
  font-size: 14px;
}

.tour-button:hover {
  background-color: #1372ac;
}













.book-tours-container {
  text-align: center; /* centers the button horizontally */
  margin: 80px 0 60px 0; /* top margin 80px, bottom margin 60px */
}


.book-tours-button {
  background-color: #cb071f; /* blue background to match your tour buttons */
  color: #fff;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.book-tours-button:hover {
  background-color: #dc2e43; /* hover effect like tour buttons */
}



