/* Header-bottom-area overflow ayarı */
.header-bottom-area {
    overflow: visible !important;
}

/* Slider container - background image ile döngü */
.header-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    background-repeat: repeat;
    background-size: 60%;
    background-position: center top;
    animation: snowfall 70s linear infinite;
}

/* Animasyon - background position yukarıdan aşağıya */
@keyframes snowfall {
    0% {
        background-position: center 0;
    }

    100% {
        background-position: center 200vh;
    }
}

/* Header içeriği slider üstünde kalmalı */
.header-bottom-area>.container {
    position: relative;
    z-index: 5;
}

/* Dropdown menü en üstte */
.header-section .sub-menu {
    z-index: 1000 !important;
}
