@media (max-width: 992px) {
    #nav-bar {
        display: none;
    }
}

@media (min-width: 769px) {
    #nav-bar {
        display: block;
    }
}

/* ========== MOBİL DRAWER MENU ========== */
.mobile-navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.mobile-navbar.mob-open {
    display: block;
}

.mob-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.mob-drawer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 992px;
    height: 100%;
    background-color: #500050;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transition: left 0.3s ease;
}

.mobile-navbar.mob-open .mob-drawer {
    left: 0;
}

.mob-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.mob-drawer-title {
    color: #F7F6FB;
    font-weight: 700;
    font-size: 1.1rem;
}

.mob-close-btn {
    background: none;
    border: none;
    color: #F7F6FB;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.2rem;
}

.mob-close-btn:hover {
    color: #ffffff;
}

.mob-drawer-list {
    padding: 0.4rem 0;
    overflow-y: auto;
    flex: 1;
}

.mob-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 1.2rem;
    color: #AFA5D9;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
}

.mob-nav-link:hover,
.mob-nav-link:active {
    color: #F7F6FB;
    background-color: #5fa2db;
}

.mob-nav-name {
    font-size: 0.95rem;
    position: relative;
}

@media (min-width: 769px) {
    .mobile-navbar {
        display: none !important;
    }
}