/* Shared styles for the Beispielreisen content pages */

.u-page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: 50% 50%;
}

.u-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.u-page-hero .u-sheet {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.u-page-hero h1 {
  color: #ffffff;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.u-page-hero .u-hero-en {
  display: block;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 8px;
}

.u-page-hero .u-hero-note {
  color: #ffffff;
  opacity: 0.85;
  font-size: 0.9375rem;
  margin: 14px 0 0;
}

.u-page-body {
  padding: 60px 0 80px;
}

.u-page-body .u-sheet {
  max-width: 1000px;
}

.u-page-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a4a4a;
  border-left: 3px solid #d8d8d8;
  padding-left: 22px;
  margin: 0 0 46px;
}

.u-en-block {
  color: #6d6d6d;
  font-size: 0.9375rem;
  border-left: 2px solid #ececec;
  padding-left: 18px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.u-page-figure {
  margin: 34px 0;
}

.u-page-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.u-page-figure figcaption {
  font-size: 0.875rem;
  color: #8a8a8a;
  margin-top: 10px;
  font-style: italic;
}

/* Itinerary day blocks */
.u-day {
  border-left: 3px solid #e0e0e0;
  padding: 4px 0 4px 26px;
  margin: 0 0 34px;
  position: relative;
}

.u-day:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 12px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #b4b4b4;
}

.u-day h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333333;
  margin: 0 0 2px;
}

.u-day .u-day-en {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #8a8a8a;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.u-day p {
  line-height: 1.8;
  color: #4a4a4a;
  margin: 14px 0;
}

.u-callout {
  background: #f7f7f5;
  border-radius: 8px;
  padding: 26px 30px;
  margin: 40px 0;
}

.u-callout h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
  margin: 22px 0 8px;
}

.u-callout h3:first-child {
  margin-top: 0;
}

.u-callout h3 .u-topic-en {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: #8a8a8a;
  margin-top: 2px;
}

.u-callout ul {
  line-height: 1.8;
  color: #4a4a4a;
  padding-left: 22px;
  margin: 10px 0;
}

.u-callout li {
  margin-bottom: 5px;
}

.u-page-cta {
  text-align: center;
  padding: 20px 0 0;
}

.u-page-cta p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0 0 22px;
}

.u-page-cta .u-email-btn {
  display: inline-block;
  background-color: #478ac9;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 44px;
  border-radius: 28px;
  text-decoration: none;
  border: none;
}

.u-page-cta .u-email-btn:hover {
  background-color: #3a76ad;
  color: #ffffff;
}

.u-page-nav-links {
  margin: 50px 0 0;
  padding-top: 26px;
  border-top: 1px solid #e6e6e6;
  font-size: 0.9375rem;
}

.u-page-nav-links a {
  color: #478ac9;
  margin-right: 26px;
}

/* Beispielreisen dropdown (shared with index.css / 404.css) */
.u-fc-has-dropdown {
  position: relative;
}

.u-fc-dropdown {
  position: absolute;
  top: 100%;
  left: 10px;
  min-width: 190px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 1000;
}

.u-fc-has-dropdown:hover .u-fc-dropdown,
.u-fc-has-dropdown:focus-within .u-fc-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.u-fc-dropdown a {
  display: block;
  padding: 10px 22px;
  color: #4a4a4a;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.u-fc-dropdown a:hover {
  background-color: #eef4fa;
  color: #478ac9;
}

@media (max-width: 767px) {
  .u-page-hero {
    min-height: 280px;
  }

  .u-page-hero h1 {
    font-size: 2.25rem;
  }

  .u-page-hero .u-hero-en {
    font-size: 1.125rem;
  }

  .u-page-body {
    padding: 40px 0 56px;
  }

  .u-callout {
    padding: 20px 22px;
  }
}
