
/* Fonts and Colors */
body {
  font-family: 'Lato', sans-serif;
  color: #333;
  background-color: #fff;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: #e3a008;
}

/* Hero */
.hero-tour {
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  animation: fadeInZoom 1.5s ease-out both;
}
.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;
  animation: slideUp 1.2s ease-out both;
}
.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

/* Description section */
.tour-description {
  padding: 4rem 0;
}
.tour-description ul {
  padding-left: 1.2rem;
}
.tour-description ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}
.tour-description ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fcb900;
  font-size: 1.2rem;
}

/* Tour Images */
.tour-images {
  margin-top: 2rem;
}
.tour-images img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Widget Placeholder */
.widget-placeholder {
  min-height: 120px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1rem;
}

/* Info Box */
.info-box {
  margin-top: 2rem;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.info-box .icon {
  color: #fcb900;
  margin-right: 0.5rem;
}
.info-box li {
  margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-aos] {
  animation: fadeInUp 0.8s ease both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hero-tour {
    height: 40vh;
    padding: 2rem 1rem;
    text-align: center;
  }
  .tour-description {
    padding: 2rem 1rem;
  }
  .tour-images {
    flex-direction: column;
    gap: 1rem;
  }
  .tour-images img {
    width: 100%;
  }
  .widget-placeholder, .info-box {
    margin-top: 2rem;
  }
}
