body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}
footer {
      text-align: center;
      padding: 15px;
      font-size: 14px;
      background-color: #f9f9f9;
      color: #666;
    }

.tour-header {
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent for blending */
  color: white;
  position: absolute; /* overlay the banner */
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  backdrop-filter: blur(0.75px); /* subtle blur effect */
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo span {
  color: #f7b733;
}

.logo a {
  text-decoration: none;
  color: white;
}

.tour-banner {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding-top: 4rem; /* space to avoid header overlap */
}

.tour-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.banner-text {
  z-index: 1;
  text-align: center;
}

.banner-text h1 {
  font-size: 3rem;
}

.banner-text p {
  font-size: 1.2rem;
}

.tour-details {
  padding: 2rem;
  background-color: whitesmoke;
}

.tour-itinerary ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.tour-itinerary li{
  padding-bottom: 1rem;
}
.tour-cost {
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: bold;
}
.button-link {
  margin-top: 1rem;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #f7b733;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.button-link:hover {
  background-color: #d69e1f;
}
