.hero {
    position: relative;
    width: 100%;
    min-height: var(--hero-height);
    background: url("/info/onepager/assets/images/hero.png") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hero-text-color);
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 {
    font-size: var(--fs-xxl);
    line-height: 1.15;
}

    .hero-content p {
        font-size: var(--fs-md);
    }

}


/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

/* Inhalt */
.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: var(--hero-heading-size);
    font-size: var(--fs-xxl);
    line-height: 1.15;
    color: var(--hero-text-color);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--color-primary);
}

.hero-content p {
    font-size: var(--hero-text-size);
    color: #f0f0f0;
    font-size: var(--fs-md);
    margin-bottom: 30px;
}

/* Button */
.hero-content .btn-primary {
    font-size: 1.1rem;
    padding: 14px 35px;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator (3 leichte Pfeile) */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scroll-indicator span {
    width: 18px;
    height: 18px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    opacity: 0.7;
    animation: arrowBounce 2s infinite ease-in-out;
}

.scroll-indicator span:nth-child(1) {
    animation-delay: 0s;
}
.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}
.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

/* sanfte Bounce-Animation */
@keyframes arrowBounce {
    0% { opacity: 0.2; transform: translateY(0) rotate(45deg); }
    50% { opacity: 1; transform: translateY(6px) rotate(45deg); }
    100% { opacity: 0.2; transform: translateY(0) rotate(45deg); }
}
