
/* Florence Tour CSS */
body {
  font-family: 'Lato', sans-serif;
  color: #333;
  background-color: #fff;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #e3a008;
}
.hero-tour {
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
}

.hero__wave{
  position: absolute;
  bottom: -1px;           /* per evitare gap */
  left: 0;
  width: 100%;
  height: 60px;
  fill: #ffffff;
  z-index: 1;
}
.hero-tour::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-tour .container {
  position: relative;
  z-index: 1;
}
.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}
.tour-description {
  padding: 4rem 0;
}
.tour-description ul li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}
.tour-description ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fcb900;
}
