nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    background: #1e293b;
    backdrop-filter: blur(10px);
}

.nav-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.nav-title a {
    text-decoration: none;
    color: #fff;
}

.nav-logo {
    height: 28px;
    width: auto;
    border-radius: 6px;
}


@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 16px;
        gap: 8px;
    }

    .nav-title {
        font-size: 18px;
    }
}