/* === Theme-weiter Hero (fernweh26) ============================
   Wird von Includes/Headerimage.ss UND von Layout/PoiPage.ss / PoiPage_details.ss verwendet.
   Bild voll, Schattenverlauf von unten ins untere Drittel auslaufend,
   Texte mit Schlagschatten fuer Lesbarkeit.
   ============================================================ */
.fw-hero {
    position: relative; width: 100%;
    height: 65vh; min-height: 480px; max-height: 720px;
    overflow: hidden;
    background: hsl(40,15%,75%);
    color: #fff;
    display: flex; align-items: flex-end;
}
/* Modifier: vollere Hero-Hoehe (HomePage) */
.fw-hero--full { height: 85vh; min-height: 600px; max-height: 900px; }
/* Modifier: Inhalt vertikal zentriert (HomePage mit Search-Form) */
.fw-hero--center { align-items: center; }
.fw-hero--center .fw-hero-inner { padding: 0; }
.fw-hero-image { position: absolute; inset: 0; z-index: 0; }
.fw-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fw-hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.82) 0%,
        rgba(0,0,0,.60) 18%,
        rgba(0,0,0,.25) 32%,
        rgba(0,0,0,0)   42%
    );
}
.fw-hero-inner {
    position: relative; z-index: 2; width: 100%;
    padding: 0 0 3rem;
}
@media (min-width: 768px) { .fw-hero-inner { padding-bottom: 4rem; } }

.fw-hero h1 {
    font-family: 'F37Bolton','Roboto',sans-serif; font-weight: 500;
    color: #fff; font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05; margin: 0 0 .75rem 0;
    text-shadow: 0 2px 12px rgba(0,0,0,.35), 0 1px 3px rgba(0,0,0,.4);
}
.fw-hero-tagline {
    color: rgba(255,255,255,.95);
    font-size: 1.1rem; max-width: 60ch; margin: 0; line-height: 1.55;
    text-shadow: 0 1px 6px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.35);
}
@media (min-width: 768px) { .fw-hero-tagline { font-size: 1.2rem; } }

/* Breadcrumbs/Links im Hero hell ueber dem dunklen Bereich */
.fw-hero-inner nav {
    color: rgba(255,255,255,.85);
    margin-bottom: .75rem;
    text-shadow: 0 1px 2px rgba(0,0,0,.35);
    font-size: .85rem;
    display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.fw-hero-inner a { color: rgba(255,255,255,.85); text-decoration: none; }
.fw-hero-inner a:hover { color: #ffd97a; }

/* Fallback (ohne Bild): cremefarben, dunkler Text */
.fw-hero-fallback {
    padding: 8rem 0 2.5rem;
    background: hsl(40,33%,98%);
    border-bottom: 1px solid hsl(40,15%,88%);
}
.fw-hero-fallback h1 {
    font-family: 'F37Bolton','Roboto',sans-serif; font-weight: 500;
    color: #2c3441; font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.1; margin: 0;
}
