/* ==========================================================================
   HERO: Hilfe & Support (analog zu anderen Hero-Sektionen)
   ========================================================================== */

#hero-hilfe-und-support.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 120px 5vw 5vw 5vw;
    box-sizing: border-box;
    overflow: hidden;
}

#hero-hilfe-und-support .hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: var(--z-index-background);
    animation: kenBurns 45s infinite alternate ease-in-out;
    transform-origin: center center;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

#hero-hilfe-und-support .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.6) 0%, rgba(27, 27, 27, 0.9) 100%);
    z-index: var(--z-index-overlay);
}

#hero-hilfe-und-support .hero-inner {
    position: relative;
    z-index: var(--z-index-foreground);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#hero-hilfe-und-support .hero-subheadline {
    font-family: 'Josefin Sans', sans-serif;
    color: var(--wkv-pink, #b31347);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

#hero-hilfe-und-support .hero-headline {
    font-family: 'Yeseva One', serif;
    color: var(--color-headline, #e4c98b);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

#hero-hilfe-und-support .hero-text {
    font-family: 'Josefin Sans', sans-serif;
    color: #dddddd;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

#hero-hilfe-und-support .hero-cta-wrapper {
    display: flex;
    justify-content: center;
}

#hero-hilfe-und-support .hero-cta {
    display: inline-block;
    background-color: var(--wkv-pink, #b31347);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: var(--wkv-ci-radius, 8px);
    text-decoration: none;
    transition: all 0.3s ease;
}

#hero-hilfe-und-support .hero-cta:hover,
#hero-hilfe-und-support .hero-cta:focus {
    background-color: var(--wkv-pink-hover, #d61b58);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 19, 71, 0.3);
}
