/* Nora Medya - Menü ile slider arasında premium ayırıcı
   Slider ve navbar birbirinden bağımsız görünür. */

.nm-menu-slider-separator {
    position: relative;
    width: 100%;
    height: 46px;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,112,21,.16), transparent 36%),
        linear-gradient(180deg, #111820 0%, #151d27 48%, rgba(21,29,39,.96) 100%);
    border-top: 1px solid rgba(255,255,255,.035);
    border-bottom: 1px solid rgba(255,255,255,.07);
    box-shadow:
        inset 0 8px 18px rgba(0,0,0,.18),
        0 8px 24px rgba(7,13,22,.15);
    z-index: 3;
}

.nm-menu-slider-separator::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(54,170,255,.12) 18%,
        rgba(255,112,21,.88) 50%,
        rgba(54,170,255,.12) 82%,
        transparent 100%
    );
    box-shadow: 0 0 14px rgba(255,112,21,.28);
}

.nm-menu-slider-separator::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 80px;
    left: 50%;
    top: -56px;
    transform: translateX(-50%);
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 50%;
    box-shadow:
        0 0 42px rgba(30,126,255,.07),
        inset 0 0 32px rgba(255,112,21,.04);
}

.nm-separator-line {
    position: absolute;
    top: 22px;
    height: 1px;
    width: min(34vw, 520px);
    opacity: .65;
    background: repeating-linear-gradient(
        90deg,
        rgba(106,185,255,.55) 0 12px,
        transparent 12px 20px
    );
}

.nm-separator-line-left {
    left: 4%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
}

.nm-separator-line-right {
    right: 4%;
    transform: scaleX(-1);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
}

.nm-separator-core {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translate(-50%, -50%);
}

.nm-separator-core span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff741b;
    box-shadow: 0 0 10px rgba(255,116,27,.92);
    animation: nmSeparatorCore 1.8s ease-in-out infinite;
}

.nm-separator-core span:nth-child(2) {
    width: 7px;
    height: 7px;
    animation-delay: .18s;
}

.nm-separator-core span:nth-child(3) {
    animation-delay: .36s;
}

.nm-separator-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(106,190,255,.95);
    box-shadow: 0 0 9px rgba(67,169,255,.9);
    animation: nmSeparatorDot 3.6s ease-in-out infinite;
}

.nm-dot-1 { left: 13%; top: 13px; animation-delay: -.4s; }
.nm-dot-2 { left: 28%; top: 30px; animation-delay: -1.7s; }
.nm-dot-3 { left: 71%; top: 12px; animation-delay: -.9s; }
.nm-dot-4 { left: 86%; top: 30px; animation-delay: -2.3s; }
.nm-dot-5 {
    left: 50%;
    top: 9px;
    width: 3px;
    height: 3px;
    background: rgba(255,135,53,.95);
    box-shadow: 0 0 10px rgba(255,112,21,.8);
    animation-delay: -1.1s;
}

.nm-separator-slash {
    position: absolute;
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34));
    transform: rotate(-42deg);
    opacity: .42;
}

.nm-slash-1 { left: 20%; top: 19px; }
.nm-slash-2 { right: 20%; top: 25px; transform: rotate(42deg); }
.nm-slash-3 { left: 50%; top: 36px; width: 13px; transform: translateX(-50%) rotate(-42deg); }

@keyframes nmSeparatorCore {
    0%, 100% {
        opacity: .45;
        transform: scale(.76);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes nmSeparatorDot {
    0%, 100% {
        opacity: .20;
        transform: translateY(4px) scale(.72);
    }
    50% {
        opacity: .95;
        transform: translateY(-4px) scale(1.18);
    }
}

/* Navbar altına çok hafif fiziksel ayrım */
.navbar-area,
.navbar-section {
    position: relative;
    z-index: 5;
}

@media (max-width: 767.98px) {
    .nm-menu-slider-separator {
        height: 30px;
    }

    .nm-separator-line {
        top: 14px;
        width: 31vw;
    }

    .nm-separator-core {
        gap: 5px;
    }

    .nm-separator-dot,
    .nm-separator-slash {
        opacity: .42;
    }

    .nm-dot-2,
    .nm-dot-4,
    .nm-slash-1,
    .nm-slash-2 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nm-separator-core span,
    .nm-separator-dot {
        animation: none !important;
    }
}
