
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: #f0f8ff;
  color: #003049;
}
.hero {
  position: relative;
  text-align: center;
}
.hero img.full-width-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero img.logo {
  position: absolute;
  top: 0.5cm;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 90%;
  height: auto;
  z-index: 2;
}
.hero .bottom-text {
  position: absolute;
  bottom: 0.5cm;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2.2rem;
  max-width: 90%;
  line-height: 1.5;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}
.locations {
  background: #f9f9f9;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}
.day-trips,
.sunset-aperitif {
  background: #f9f9f9;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}
.day-trips h2,
.sunset-aperitif h2 {
  font-size: 1.8rem;
  color: #003049;
}
.day-trips .price,
.sunset-aperitif .price {
  font-weight: bold;
}
.hero-content {
  background-color: #f0f8ff;
  padding: 2rem 1rem;
  text-align: center;
}
.hero-content h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 1rem 0;
}
.hero-content p {
  max-width: 600px;
  font-size: 1.1rem;
  margin: 1rem auto 2rem;
}
.hero-content a {
  background: #ffba08;
  color: #003049;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}
.hero-content a:hover {
  background: #faa307;
}
@media (max-width: 600px) {
  .hero-content h2 {
    font-size: 1.4rem;
  }
  .hero img.logo {
    max-width: 720px;
  }
  .hero .bottom-text {
    font-size: 1.6rem;
  }
}
