/* ── Wrapper ── */
.scroll-hint {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
 
    /* Einblenden nach kurzem Delay */
    opacity: 0;
    animation: shFadeIn 0.8s ease 2s forwards;
}
 
@keyframes shFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
 
/* Immer sichtbar – kein Ausblenden beim Scrollen */
 
/* ── "Scroll" Label ── */
.scroll-hint-label {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}
 
/* ── Maus-Icon ── */
.scroll-hint-track {
    width: 26px;
    height: 42px;
    border: 2px solid rgb(220, 65, 65);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 12px rgba(220, 65, 65, 0.3),
                inset 0 0 8px rgba(220, 65, 65, 0.05);
}
 
.scroll-hint-dot {
    width: 5px;
    height: 5px;
    background: rgb(220, 65, 65);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    animation: shDotScroll 1.8s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(220, 65, 65, 0.8);
}
 
@keyframes shDotScroll {
    0%   { top: 7px;  opacity: 1; }
    60%  { top: 22px; opacity: 0; }
    100% { top: 7px;  opacity: 0; }
}
 
/* ── Chevrons ── */
.scroll-hint-chevrons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
 
.scroll-hint-chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid rgb(220, 65, 65);
    border-bottom: 2px solid rgb(220, 65, 65);
    transform: rotate(45deg);
}
 
.scroll-hint-chevron:nth-child(1) { animation: shChevron 1.8s ease-in-out infinite 0s;    opacity: 0.3; }
.scroll-hint-chevron:nth-child(2) { animation: shChevron 1.8s ease-in-out infinite 0.2s;  opacity: 0.6; }
.scroll-hint-chevron:nth-child(3) { animation: shChevron 1.8s ease-in-out infinite 0.4s;  opacity: 1;   }
 
@keyframes shChevron {
    0%   { opacity: 0.1; }
    50%  { opacity: 1; }
    100% { opacity: 0.1; }
}
 
/* ── Hero-Sections brauchen position: relative ── */
.hero,
.hero-mobile {
    position: relative;
}
 
/* Mobile etwas höher damit info-banner nicht überlappt */
.hero-mobile .scroll-hint {
    bottom: 4rem;
}